J
John Smith
I tried:
javac -verbose -g vvs.java
and I got 24 errors of this type:
vvs.java:275: cannot resolve symbol
symbol : class Entry
location: class com.dt.scenery.vvs
Entry me = (Entry)VMapping.elementAt(iMappingIndex);
^
but Entry.class is in the *same* directory as vvs.java.
note:
vvs.java belongs to
package com.dt.scenery; (line 1 of vvs.java)
and Entry.java belongs to
package com.dt.scenery; (line 1 of Entry.java)
Any suggestion for a fix is appreciated.
javac -verbose -g vvs.java
and I got 24 errors of this type:
vvs.java:275: cannot resolve symbol
symbol : class Entry
location: class com.dt.scenery.vvs
Entry me = (Entry)VMapping.elementAt(iMappingIndex);
^
but Entry.class is in the *same* directory as vvs.java.
note:
vvs.java belongs to
package com.dt.scenery; (line 1 of vvs.java)
and Entry.java belongs to
package com.dt.scenery; (line 1 of Entry.java)
Any suggestion for a fix is appreciated.