wing$1.class是wing class的inner class.
Inner Class有很多种。
public class A
{
   class B
   {}
   static class C
   {}
}
这样就会有A$B.class, A$C.class.
public class A
{
..
    ??.addActionListener(new ActionListener()
    {
       //define abstract methods here.
    });
..
}
这样就有了A$1.class等等。不用对这种东西在意。