So I understand that the compiler takes *.java files, processes them and spits out *.class files.
But, when there's more than one class in a file, what's the deal with making multiple *.class files with a "$1" in the middle?
Does this mean I should be using more than one *.java file? Is the compiler (only slightly joking here) mad at me and fixing my mistakes??
This situation is for class files for button listeners -- the classes are inside the GUI
java file. I wanna do the right thing and not learn things by doing it wrong.
/Janeice/