I have a very basic question. When I decompile any java class using JAD in eclipse I can find that it there are comment lines like. What does this mean? and how to reference one class in another in eclipse.
//Referenced classes of package <package name>:
// DetailedLoginException
Thanks!!
I think it lists the classes of the package
<package name>which are being referenced/used by this class(decompiled class). And the<package name>is also same as the decompiled class’s package. Like in following exampleAssertandComparisonFailureboth belongs toorg.junitpackage.