cannot resolve symbol
I have copied the DiveLog.java file from the sample applications tutorial and tried compling the same, but it gives the "cannot resolve symbol" error with all the class declared in that.
I have tried to set the classpath in several ways but still could not resolve the problem. Here is my classpath.
c:\j2sdk1.4.0-beta3\BIN;C:\j2sdk1.4.0-beta3\jre\lib\dt.jar;C:\j2sdk1.4.0-beta3\lib\tools.jar;C:\j2sdk1.4.0-beta3\lib\classes12.zip;C:\j2sdk1.4.0-beta3\lib\dt.jar;D:\Oracle\Ora81\orb\classes\yoj.jar;D:\Oracle\Ora81\orb\classes\share.zip;
Error is like the following:
C:\DiveLog>javac divelog.java
divelog.java:57: cannot resolve symbol
symbol : class Welcome
location: class divelog.DiveLog
new Welcome(),
^
divelog.java:63: cannot resolve symbol
symbol : class Diver
location: class divelog.DiveLog
new Diver(),
^
divelog.java:68: cannot resolve symbol
symbol : class Dives
location: class divelog.DiveLog
new Dives(),
^
divelog.java:73: cannot resolve symbol
symbol : class Statistics
location: class divelog.DiveLog
new Statistics(),
^
divelog.java:78: cannot resolve symbol
symbol : class WebSite
location: class divelog.DiveLog
new WebSite(),
^
divelog.java:82: cannot resolve symbol
symbol : class Resources
location: class divelog.DiveLog
new Resources(),
^
6 errors
Please help me resolve this

