How to set up a package?

Would you know how to set up a package for a Java project? How do I set up the .class files?

thanks!

Subject: How to set up a package?

you use the ‘package’ keyword at the top of your .java files.Your .class files are the compiled code.

So if you wanted to follow convention and your site was www.host.net your package declaration would be:

package net.host.www;

HTH

Shawn

Subject: Thanks!

Tx.