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

changes to containertemplaterepo to specify a target host

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/code/DMM/trunk@11994 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent 7c8125dc
No related branches found
No related tags found
No related merge requests found
......@@ -87,3 +87,4 @@ _UI_RuntimeEnvironmentClasses_OTHER_literal = OTHER
_UI_ContainerTemplate_referringContainers_feature = Referring Containers
_UI_ResourcePoolConfiguration_type = Resource Pool Configuration
_UI_ResourcePoolConfiguration_resourcePoolConfig_feature = Resource Pool Config
_UI_ContainerTemplate_runningOn_feature = Running On
......@@ -68,6 +68,7 @@ public class ContainerTemplateItemProvider
super.getPropertyDescriptors(object);
addReferringContainersPropertyDescriptor(object);
addRunningOnPropertyDescriptor(object);
}
return itemPropertyDescriptors;
}
......@@ -95,6 +96,28 @@ public class ContainerTemplateItemProvider
}
/**
* This adds a property descriptor for the Running On feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void addRunningOnPropertyDescriptor(Object object) {
itemPropertyDescriptors.add
(createItemPropertyDescriptor
(((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_ContainerTemplate_runningOn_feature"),
getString("_UI_PropertyDescriptor_description", "_UI_ContainerTemplate_runningOn_feature", "_UI_ContainerTemplate_type"),
ContainerrepositoryPackage.Literals.CONTAINER_TEMPLATE__RUNNING_ON,
true,
false,
true,
null,
null,
null));
}
/**
* This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an
* {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or
* {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}.
......
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