Import jME

I want to import every jme/jmex class in a few simple lines. I tried import com.jme.* and com.jmex.* but it didn't work. I could make a new class that imports every class, but idk if that would work. Any ideas on how to do this?

Currently in the Java language classes package names do not behave hierarchially so there is no single import that brings in everything.  If you have an IDE like eclipse, you can use the quick-fix shortcut ("ctrl" + "1") to bring up a list of packages found for a class and have the IDE automatically paste the import statement in.