HappyGoLucky
December 19th, 2002, 09:11 PM
Can someone help me out. I am trying to compile my java code, but it does not like line 13 below. It looks like maybe it can not find the geometry package? I am using JavaSDK 1.4.4 and Forte For Java as the IDE. Any help is appreciated.
13 package java.awt.geom.*;
14
15 public interface Moveable {
16
17 public boolean collidesWith(Moveable other);
18 public void processCollisions();
19 public void update();
20 // Moveable
21 }
Error Message from compiler:
package java.awt.geom.*;
^
Errors compiling interface Moveable
13 package java.awt.geom.*;
14
15 public interface Moveable {
16
17 public boolean collidesWith(Moveable other);
18 public void processCollisions();
19 public void update();
20 // Moveable
21 }
Error Message from compiler:
package java.awt.geom.*;
^
Errors compiling interface Moveable