> > Von: "Ian Hunter" <[EMAIL PROTECTED]> > Datum: 2002/08/28 Mi PM 12:56:29 GMT+02:00 > An: [EMAIL PROTECTED] > Betreff: Help! I'm going mad...(I also have a ClassLoader problem :-) > > > Hi Folks, > > I would very much like to build a table at class load time (using my version > of BCel ClassLoader; for simplicity lets say an array of class names as they > are loaded) and access this from run time code. > > However, I come up against the 'all static variables set to default'
The problem is that your classloader and your classes are being loaded by different class loaders (Got that? :-). Thus they're in different context, and the class loader you're referencing from your code is a different one. There is no simple solution to this problem, but it is problem a well-known one. Cheers Markus -- berlin.de - meine stadt im netz. Jetzt eigene eMail-adresse @berlin.de sichern! http://webmail.berlin.de -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
