Skip to content
Snippets Groups Projects
Commit 8d0488ed authored by Simon Spinner's avatar Simon Spinner
Browse files

Automatically load default resource types and primitive types into tree editors.

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/DMM/trunk@16520 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent 5ea25051
No related branches found
No related tags found
No related merge requests found
......@@ -970,7 +970,7 @@ public class RepositoryEditor
* This is the method called to load a resource into the editing domain's resource set based on the editor's input.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @generated NOT
*/
public void createModel() {
URI resourceURI = EditUIUtil.getURI(getEditorInput());
......@@ -991,6 +991,10 @@ public class RepositoryEditor
resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception));
}
editingDomain.getResourceSet().eAdapters().add(problemIndicationAdapter);
// Add default resource sets to editor
editingDomain.loadResource("pathmap://DMM_APPLICATIONLEVEL_MODELS/defaultresourcetypes.resourcetype");
editingDomain.loadResource("pathmap://DMM_APPLICATIONLEVEL_MODELS/primitivetypes.repository");
}
/**
......
......@@ -966,6 +966,9 @@ public class ResourcelandscapeEditor
resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception));
}
editingDomain.getResourceSet().eAdapters().add(problemIndicationAdapter);
// Add default resource types model.
editingDomain.loadResource("pathmap://DMM_APPLICATIONLEVEL_MODELS/defaultresourcetypes.resourcetype");
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment