The error message I am getting is that of cannot resolve symbol. I have to class as show below and when I try to compile ClickMe.java I get the error message:
clickme.java:6: cannot resolve symbol
symbol : class Spot
location: class ClickMe
private Spot spot = null;
clickme.java:28: cannot resolve symbol
symbol : class Spot
location: class ClickMe
spot = new Spot(RADIUS)
2 errors
Please note that I have no problem compiling a single class i.e. a class that does not refere to another class.
It is my understanding that when I compile ClickMe it automatically compiles Spot.
Thank you for you help.
Maru