Stan Dominski Guest
|
Posted: Tue Jun 28, 2005 2:11 pm Post subject: .jar file not seen ! HELP ! |
|
|
I have done everything right and yet still the same error messages:
Any suggestions ?
Thank you
Stan
"Blob.java": package objectdraw does not exist at line 3, column 1
"Blob.java": cannot find symbol; symbol: class WindowController at line 5, column 27
---------------------------------
package stan_blob;
import objectdraw.*;
public class Blob extends WindowController
{
// Location(double x, double y) .
//Parameters:
//x - the point's x value
//y - the point's y value
public void onMousePress(Location p)
{
//Parameters:
//start - the starting point of the line.
//end - the destination point of the line.
//c - the canvas in which the line is created.
// Line(Location start,Location end,DrawingCanvas c)
new Line(180, 170, 250, 340, canvas);
new Line(240, 40, 220, 500, canvas);
}
public void onMouseRelease(Location p)
{
canvas.clear();
}
}
-----------------------------------------------------
|
|