Re: Cannot resolve symbol problem
Posted By:
Bahman_Barzideh
Posted On:
Friday, June 20, 2003 08:38 AM
You may be having CLASSPATH issues. Examine your javac
command line. From this, you should be to determine where the .class files are being placed (this is the value of the -d option. If the option is not there, javac will default to
the directory where it finds the .java to be compiled).
Make sure the specified directory is in your class path.
Also if the two classes are not in the same package, you may have to
import AppManager in BarManager.java