non static inner classes are a wierd and wonderful thing that have a secret binding to an instance of their owner -the class that contains them. They are very useful in Swing apps, and sometimes in other places, but can be very confusing to use (as they have access to all members in the container class)
----- Original Message ----- From: "Doug Haigh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 11, 2003 10:55 Subject: RE: Nested Classes for Java Beans not Allowed? > Thanks, that did it. Can you enlighten me why it needs to be a static class? > I am a Java newbie... > > -----Original Message----- > From: Steve Loughran [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 11, 2003 11:25 AM > To: [EMAIL PROTECTED] > Subject: Re: Nested Classes for Java Beans not Allowed? > > Make it a static nested class, not a non-static one -that needs a soap > manager instance in a different kind of constructor. > > > >