eva/3 Application BuilderDeveloping Additional eva/3 ComponentsUser CommandsExamples for Tasks of an CommandExamples for miscellaneous commands 

Add an eva/3-Projektpfad

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();
}