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

initialize an eva/3-Projekt

The class method createProjectPathHolder(String path) of AbstractProjectPathholder creates a PojectPathHolder object. The parameter path is the absolute path of the eva/3 project. The PojectPathHolder object is the parameter for the method setProjectPathHolder(ProjectPathHolder holder) of the AbstractProjectPathholder class.

Example:

try {
    String projectPath =
        "D:\\eclipse\\runtime-workbench-workspace\\Test";
    AbstractProjectPathHolder.setProjectPathHolder(
        AbstractProjectPathHolder.createProjectPathHolder(
        projectPath));
} catch (InvocationTargetException e) {
    e.printStackTrace();
}