adding class files in classes directory (not found)
I thought I knew this but I obviously missed something somewhere.
I have 4 or 5 class files that extend a class called Shapes
So I made a directory in the class path under the Classes/Shapes directory and put alll my files in there.
But the functions aren't being found.
//simple code
import Shapes.Line;
function line(x1,y1,x2,y2);
//does nothing and trace not called
Did I put them in the right place?
|