I have this great little program that I have made in the JCreator IDE. It has four class files. All of the classes are in a package called org.jfree.panning. They are listed as follows:
XYPLOT.class*
PanningChartPanel.class
PannableXYPLOT.class
Pannable.class
* = Main Class
There are also four .java files corresponding to each .class file, if that helps.
My program also makes use of a third party library - JFreeChart.jar
The program compiles perfectly in the JCreator, but the problem for me is that I have absolutely no experience compiling jar executables from Java files. I tried to create a jar file inside of the JCreator IDE (I put "Main-Class: XYPLOT" in the manifest.txt), but when I double click the jar executable, it says it cant find the Main Class. Can anyone guide me in the right direction, or tell me what is wrong? Thank you for your help.