I am having issues with IBM's AST (which is based on Eclipse 3.2) importing files. For example, I have a class file named "Status" in the following package: com.test.model
When I give another class in the project the following statement:
import com.test.model.Status;
the IDE complains that it cannot resolve the import.
There are no errors on the file that is being referenced.
If I remove the import statement and try to use the Status class, the IDE gives an error about the missing reference (as expected). When I click on the error icon to insert the reference to the class file, com.test.model.Status is the first selection.
So, the system cannot find the file, yet it can find the file.
Thoughts?