Re: Problems with java.lang.ClassLoader

1999-07-21 Thread Rob Nugent
Michel, I observe that the defineClass method you arte using is 'protected' Is this your problem ? Rob Michel Prevost wrote: > Hi All > > I am currently doing some tests with dynamic class loading. I have the > following snippet of code: > > Class dateDisplayClass = > cl.defineCla

Problems with java.lang.ClassLoader

1999-07-20 Thread Michel Prevost
Hi All I am currently doing some tests with dynamic class loading. I have the following snippet of code: Class dateDisplayClass = cl.defineClass(args[0], dateDisplayClassBytes, 0, dateDisplayClassBytes.length); cl.resolveClass(dateDisplayClass); Here is the problem: