when I run javac, it display the following error:
ejbtest.java:169: class$ is reserved for internal use
static Class class$(String x0)
what's that mean?
thanks for any reply
shai
-
what is internal use??? (3 messages)
- Posted by: gev shai
- Posted on: January 22 2003 10:51 EST
Threaded Messages (3)
- what is internal use??? by Gal Binyamini on January 22 2003 11:38 EST
- what is internal use??? by brian chan on January 22 2003 16:18 EST
- Decompiled code? by Ferhat SAVCI on January 23 2003 06:30 EST
-
what is internal use???[ Go to top ]
- Posted by: Gal Binyamini
- Posted on: January 22 2003 11:38 EST
- in response to gev shai
What's in line 169 in your code? Are you trying to declare a class with '$' in it's name?
Gal -
what is internal use???[ Go to top ]
- Posted by: brian chan
- Posted on: January 22 2003 16:18 EST
- in response to gev shai
My guess is that you are illegally refering to some inner class of your test class. Check your code to see if you have any inner class. -
Decompiled code?[ Go to top ]
- Posted by: Ferhat SAVCI
- Posted on: January 23 2003 06:30 EST
- in response to gev shai
Have you decompiled the code from a .class file?