I'm new to JDeveloper & am really confused by some compile errors I'm getting after changing the path to my application. It compiles when stored in C:\SVNbase\ApplicationName but won't compile if I change the folder name to C:\SVNbase\ApplicationName2. This means that when I check the code in to our repository & another developer checks it out to a different location on their machine it won't compile.
The compile errors are in ViewController, Application Sources, backing, ApplicationBean.java
The errors are with the lines:
import javax.faces.event.PhaseEvent;
import javax.faces.event.PhaseId;
import javax.faces.model.SelectItem;
import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice;
The errors are:
package javax.faces.event does not exist
package javax.faces.model does not exist
package oracle.adf.view.rich.component.rich.input does not exist
cannot find class SelectItem
cannot find class RichSelectOneChoice
cannot find class PhaseEvent
cannot find variable PhaseId
There's no indication in the editor window that there's a problem with the import statements. Normally if there were a problem they would be underlined in red with a comment saying import not found, but that doesn't happen here. The problem only appears upon compile.
Any idea what's going on here?