The class method addProjectPath(String path) of the class ObjectLoader adds an project path to the active eva/3 Application Builder project. The parameter "path" contains the current project path.
Example:
String projectPath = "D:\\runtime-workspace\\AdressBookDemo"; try { ObjectLoader.addProjectPath(projectPath); } catch (InvocationTargetException e) { e.printStackTrace(); }