--- Kimberly Begley <[EMAIL PROTECTED]> wrote: > javac -d . HelloWorldTest.java > ---------- > 1. ERROR in HelloWorldTest.java (at line 9) > HelloWorld hello_world = new HelloWorld(); > ^^^^^^^^^^ > HelloWorld cannot be resolved to a type > ---------- > 2. ERROR in HelloWorldTest.java (at line 9) > HelloWorld hello_world = new HelloWorld(); > ^^^^^^^^^^ > HelloWorld cannot be resolved to a type > ---------- > 3. ERROR in HelloWorldTest.java (at line 16) > HelloWorld.MESSAGE.equals(hello_world.getMessage())); > ^^^^^^^^^^ > HelloWorld cannot be resolved > ---------- > 3 problems (3 errors) > > I'm not sure if the errors are related to the warning I got about > HelloWorld.java - any suggestions?
HelloWorld is not on your classpath when you're compiling HelloWorldTest. The serialization warning is not related to that compilation problem. Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]