newbie compiling question.
Hi I'm trying to compile my program but I get the following error:
C:\Program Files\Java\jdk1.6.0_01\bin>javac -classpath c:\test -sourcepath c:\test\*.java
c:\test\ProcessStatementLine.java:22: cannot find symbol
symbol : class AnalyzeAccNum
location: class test.ProcessStatementLine
static AnalyzeAccNum analyzeAccNum;
^
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error
It looks to me it could not find the file AnalyzeAccNum. All files are in the package test, is that enough?

