--- [EMAIL PROTECTED] wrote: > Compiled class files ending up in build/classes directory instead of > build/classes/com/classifieds?
That suggests they don't have a package statement in them. For example: package com.classifieds ; The compiler takes the dot-notation elements of a package statement and creates a subdirectory in the output directory for each element, then puts the class files for that package there. But it won't do that if there's no package statement -- in that case, it will simply put the class files into the output directory itself. Diane ===== ([EMAIL PROTECTED]) __________________________________________________ Do You Yahoo!? Send FREE Valentine eCards with Yahoo! Greetings! http://greetings.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
