>With this command:
>javac -classpath \town-2.0\town.jar ormap/*.java ormap/generated/*.java
>
>Here's the errors:
>custom\ormap\generated\_Catalog.java:27: Class 
>custom.ormap.generated.DB not found.
>
> protected DB db;

Ah, OK.  You need to have the root of your source hierarchy in the 
classpath.  Try this:

javac -classpath \town-2.0\town.jar:\town\src ormap/*.java 
ormap/generated/*.java

or, if you're compiling to a different location, this:

javac -d \classes -classpath \town-2.0\town.jar:\classes ormap/*.java 
ormap/generated/*.java

-ds

________________________________________________________________________
David Soergel              .oooO  Oooo.        "Music and Living----"
123 Forest View            (   )  (   )     "The same thing," said Pooh.
Woodside, CA  94062         \ (    ) /            [EMAIL PROTECTED]
(650) 303-5324               \_)  (_/           http://www.lorax.org
________________________________________________________________________



------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to