posted 19 years ago
Yeah, but, usually the name of .class in nested classes is parent$child.class
In this case the name inside the .java file (source code) is _cls$Base and the name of the .class file is $Base.class
Here it's the source code resulting after decompile a $Base.class file:
class _cls$Base{
..............
..............
..............
}
Thanks.
Critian