After successfully creating some applets, I embedded them in a webpage and discovered that ALL the class files must be included. Leave one out and it won't work.
After several iterations of an Applet, there are several class files:
filename.class
filename$1.class
filename$2.class, etc.
I tried using only the filename.class, tried just the last one, tried the first and last... but, as I said, all the class files must be included for the webpage.
Question(s):
1) The filename$n.class (n=some number) files seem to be created at the whim of Eclipse - is there an explanation of this (I searched w/o success)?
2) Even though the class files are only ~4kb, How do I do a cleanup such as to blow away all the filename$n.class files and still be able to embed in a webpage?
Any recommendations?
Thanks