Skip to content
Snippets Groups Projects
Commit fe5dc2d3 authored by Nikolaus Huber's avatar Nikolaus Huber
Browse files

fixed naming problem

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/code/DMM/trunk@11808 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent 5989c943
No related branches found
No related tags found
No related merge requests found
......@@ -156,3 +156,4 @@ _UI_RelationalOperator_GREATER_literal = GREATER
_UI_RelationalOperator_GREATER_EQUAL_literal = GREATER_EQUAL
_UI_RelationalOperator_LESS_literal = LESS
_UI_RelationalOperator_LESS_EQUAL_literal = LESS_EQUAL
_UI_Objective_specifications_feature = Specifications
......@@ -80,7 +80,7 @@ public class ObjectiveItemProvider
public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) {
if (childrenFeatures == null) {
super.getChildrenFeatures(object);
childrenFeatures.add(AdaptationPackage.Literals.OBJECTIVE__SPECIFICATION);
childrenFeatures.add(AdaptationPackage.Literals.OBJECTIVE__SPECIFICATIONS);
}
return childrenFeatures;
}
......@@ -135,7 +135,7 @@ public class ObjectiveItemProvider
updateChildren(notification);
switch (notification.getFeatureID(Objective.class)) {
case AdaptationPackage.OBJECTIVE__SPECIFICATION:
case AdaptationPackage.OBJECTIVE__SPECIFICATIONS:
fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
return;
}
......@@ -155,7 +155,7 @@ public class ObjectiveItemProvider
newChildDescriptors.add
(createChildParameter
(AdaptationPackage.Literals.OBJECTIVE__SPECIFICATION,
(AdaptationPackage.Literals.OBJECTIVE__SPECIFICATIONS,
AdaptationFactory.eINSTANCE.createSpecification()));
}
......
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