Funny Compiling Error
Hi
I am trying to compile some classes but I get funny sorts of errors. Errors I get are as follows;
RemoteServerImpl.java:8: interface expected here
public class RemoteServerImpl extends UnicastRemoteObject implements RemoteServe
r
^
RemoteServerImpl.java:14: cannot resolve symbol
symbol : class Jdom_files
location: class RemoteServerImpl
private Jdom_files jdom= new Jdom_files();
^
RemoteServerImpl.java:14: cannot resolve symbol
symbol : class Jdom_files
location: class RemoteServerImpl
private Jdom_files jdom= new Jdom_files();
^
3 errors
I know that the first error is saying that I need to implement an interface and the second error is saying that it cannot find Jdom_files. However, I am implementing the interface and Jdom-files is in the same directory.
I have compiled the same class before, and it used to compile Ok. Also, if I compile the same class at my university computers, it again compiles fine. Only when I compile at home, it does not.
So does anyone knows what has happened to my home compiler.
regards

