Problem with imports
I have a file structure like this:
C:\Mobisma2\se\mobisma\blackberry\
the workspacefile Mobisma2.jdw is in the Mobisma2 folder
in folder blackberry i have 2 folders: testdriver and configstore that contains 2 classes, testdriver.java and configstore.java as well as the corresponding project files.
so I specify package in these two 2 java files as:
package se.mobisma.blackberry.testdriver
package se.mobisma.blackberry.configstore
Now I want to import configstore into testdriver. The logical( to me) statement would be:
import se.mobisma.blackberry.configstore.*;
does not work. Nor does any other variation I have tried, and I have tried quite a few.
Error message:
C:\Mobisma2\se\mobisma\blackberry\testdriver\testd river.java:8: package se.mobisma.blackberry.configstore does not exist
import se.mobisma.blackberry.configstore.*;
Please enlighten me
