blob: e72a15e6480a91a49e90befc0db0e3af29ee58d0 [file] [log] [blame]
/*
* Copyright (c) 2005, 2014 IBM Corporation, Embarcadero Technologies, CEA, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM - initial API and implementation
* Kenn Hussey (Embarcadero Technologies) - 205188, 215418, 204200
* Kenn Hussey - 323181
* Kenn Hussey (CEA) - 327039, 351774, 418466, 414970
*
*/
package org.eclipse.uml2.uml.edit.providers;
import java.util.Collection;
import java.util.List;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
import org.eclipse.emf.edit.provider.IItemLabelProvider;
import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
import org.eclipse.emf.edit.provider.IItemPropertySource;
import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
import org.eclipse.emf.edit.provider.ItemPropertyDescriptor;
import org.eclipse.emf.edit.provider.ViewerNotification;
import org.eclipse.uml2.uml.Component;
import org.eclipse.uml2.uml.UMLFactory;
import org.eclipse.uml2.uml.UMLPackage;
/**
* This is the item provider adapter for a {@link org.eclipse.uml2.uml.Component} object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class ComponentItemProvider
extends ClassItemProvider {
/**
* This constructs an instance from a factory and a notifier.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ComponentItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
/**
* This returns the property descriptors for the adapted class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) {
if (itemPropertyDescriptors == null) {
super.getPropertyDescriptors(object);
addIsIndirectlyInstantiatedPropertyDescriptor(object);
addPackagedElementPropertyDescriptor(object);
addProvidedPropertyDescriptor(object);
addRealizationPropertyDescriptor(object);
addRequiredPropertyDescriptor(object);
}
return itemPropertyDescriptors;
}
/**
* This adds a property descriptor for the Is Indirectly Instantiated feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void addIsIndirectlyInstantiatedPropertyDescriptor(Object object) {
itemPropertyDescriptors
.add(createItemPropertyDescriptor(
((ComposeableAdapterFactory) adapterFactory)
.getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_Component_isIndirectlyInstantiated_feature"), //$NON-NLS-1$
getString(
"_UI_PropertyDescriptor_description", "_UI_Component_isIndirectlyInstantiated_feature", "_UI_Component_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
UMLPackage.Literals.COMPONENT__IS_INDIRECTLY_INSTANTIATED,
true, false, false, ItemPropertyDescriptor.BOOLEAN_VALUE_IMAGE,
null, null));
}
/**
* This adds a property descriptor for the Packaged Element feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void addPackagedElementPropertyDescriptor(Object object) {
itemPropertyDescriptors
.add(createItemPropertyDescriptor(
((ComposeableAdapterFactory) adapterFactory)
.getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_Component_packagedElement_feature"), //$NON-NLS-1$
getString(
"_UI_PropertyDescriptor_description", "_UI_Component_packagedElement_feature", "_UI_Component_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT, true, false,
true, null, null,
new String[]{"org.eclipse.ui.views.properties.expert" //$NON-NLS-1$
}));
}
/**
* This adds a property descriptor for the Required feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void addRequiredPropertyDescriptor(Object object) {
itemPropertyDescriptors
.add(createItemPropertyDescriptor(
((ComposeableAdapterFactory) adapterFactory)
.getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_Component_required_feature"), //$NON-NLS-1$
getString(
"_UI_PropertyDescriptor_description", "_UI_Component_required_feature", "_UI_Component_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
UMLPackage.Literals.COMPONENT__REQUIRED, false, false, false,
null, null,
new String[]{"org.eclipse.ui.views.properties.expert" //$NON-NLS-1$
}));
}
/**
* This adds a property descriptor for the Provided feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void addProvidedPropertyDescriptor(Object object) {
itemPropertyDescriptors
.add(createItemPropertyDescriptor(
((ComposeableAdapterFactory) adapterFactory)
.getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_Component_provided_feature"), //$NON-NLS-1$
getString(
"_UI_PropertyDescriptor_description", "_UI_Component_provided_feature", "_UI_Component_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
UMLPackage.Literals.COMPONENT__PROVIDED, false, false, false,
null, null,
new String[]{"org.eclipse.ui.views.properties.expert" //$NON-NLS-1$
}));
}
/**
* This adds a property descriptor for the Realization feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void addRealizationPropertyDescriptor(Object object) {
itemPropertyDescriptors
.add(createItemPropertyDescriptor(
((ComposeableAdapterFactory) adapterFactory)
.getRootAdapterFactory(),
getResourceLocator(),
getString("_UI_Component_realization_feature"), //$NON-NLS-1$
getString(
"_UI_PropertyDescriptor_description", "_UI_Component_realization_feature", "_UI_Component_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
UMLPackage.Literals.COMPONENT__REALIZATION, true, false, true,
null, null,
new String[]{"org.eclipse.ui.views.properties.expert" //$NON-NLS-1$
}));
}
/**
* 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}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Collection<? extends EStructuralFeature> getChildrenFeatures(
Object object) {
if (childrenFeatures == null) {
super.getChildrenFeatures(object);
childrenFeatures
.add(UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT);
childrenFeatures.add(UMLPackage.Literals.COMPONENT__REALIZATION);
}
return childrenFeatures;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EStructuralFeature getChildFeature(Object object, Object child) {
// Check the type of the specified child object and return the proper feature to use for
// adding (see {@link AddCommand}) it as a child.
return super.getChildFeature(object, child);
}
/**
* This returns Component.gif.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object getImage(Object object) {
return overlayImage(object,
getResourceLocator().getImage("full/obj16/Component")); //$NON-NLS-1$
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected boolean shouldComposeCreationImage() {
return true;
}
/**
* This returns the label text for the adapted class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
@Override
public String getText(Object object) {
return appendLabel(
appendType(appendKeywords(new StringBuffer(), object),
"_UI_Component_type"), object).toString(); //$NON-NLS-1$
}
/**
* This handles model notifications by calling {@link #updateChildren} to update any cached
* children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void notifyChanged(Notification notification) {
updateChildren(notification);
switch (notification.getFeatureID(Component.class)) {
case UMLPackage.COMPONENT__IS_INDIRECTLY_INSTANTIATED :
fireNotifyChanged(new ViewerNotification(notification,
notification.getNotifier(), false, true));
return;
case UMLPackage.COMPONENT__PACKAGED_ELEMENT :
case UMLPackage.COMPONENT__REALIZATION :
fireNotifyChanged(new ViewerNotification(notification,
notification.getNotifier(), true, false));
return;
}
super.notifyChanged(notification);
}
/**
* This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
* that can be created under this object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected void collectNewChildDescriptors(
Collection<Object> newChildDescriptors, Object object) {
super.collectNewChildDescriptors(newChildDescriptors, object);
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createClass()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createActivity()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createStereotype()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createPackage()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createProfile()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createAssociation()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDependency()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDeployment()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createArtifact()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDeploymentSpecification()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createAbstraction()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createManifestation()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createOpaqueExpression()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createConstraint()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDataType()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInterface()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createSignal()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createStateMachine()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createProtocolStateMachine()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createEnumeration()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInstanceSpecification()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createEnumerationLiteral()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createPrimitiveType()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createExtension()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createModel()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createExpression()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createStringExpression()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createUsage()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createCollaboration()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createGeneralizationSet()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createUseCase()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createRealization()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createSubstitution()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInterfaceRealization()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInstanceValue()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createAnyReceiveEvent()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createCallEvent()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createChangeEvent()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createOpaqueBehavior()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createFunctionBehavior()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createSignalEvent()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createTimeEvent()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createTimeExpression()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createCommunicationPath()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createNode()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDevice()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createExecutionEnvironment()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInformationFlow()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInteraction()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInteractionConstraint()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInformationItem()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createAssociationClass()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createComponent()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createComponentRealization()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createActor()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDuration()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createIntervalConstraint()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDurationConstraint()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createInterval()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDurationInterval()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createDurationObservation()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createLiteralBoolean()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createLiteralInteger()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createLiteralNull()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createLiteralReal()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createLiteralString()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createLiteralUnlimitedNatural()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createTimeConstraint()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createTimeInterval()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT,
UMLFactory.eINSTANCE.createTimeObservation()));
newChildDescriptors.add(createChildParameter(
UMLPackage.Literals.COMPONENT__REALIZATION,
UMLFactory.eINSTANCE.createComponentRealization()));
}
/**
* This returns the label text for {@link org.eclipse.emf.edit.command.CreateChildCommand}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String getCreateChildText(Object owner, Object feature,
Object child, Collection<?> selection) {
Object childFeature = feature;
Object childObject = child;
boolean qualify = childFeature == UMLPackage.Literals.NAMED_ELEMENT__NAME_EXPRESSION
|| childFeature == UMLPackage.Literals.COMPONENT__PACKAGED_ELEMENT
|| childFeature == UMLPackage.Literals.NAMESPACE__OWNED_RULE
|| childFeature == UMLPackage.Literals.CLASSIFIER__COLLABORATION_USE
|| childFeature == UMLPackage.Literals.CLASSIFIER__REPRESENTATION
|| childFeature == UMLPackage.Literals.CLASSIFIER__OWNED_USE_CASE
|| childFeature == UMLPackage.Literals.CLASS__NESTED_CLASSIFIER
|| childFeature == UMLPackage.Literals.CLASSIFIER__SUBSTITUTION
|| childFeature == UMLPackage.Literals.STRUCTURED_CLASSIFIER__OWNED_ATTRIBUTE
|| childFeature == UMLPackage.Literals.ENCAPSULATED_CLASSIFIER__OWNED_PORT
|| childFeature == UMLPackage.Literals.BEHAVIORED_CLASSIFIER__CLASSIFIER_BEHAVIOR
|| childFeature == UMLPackage.Literals.BEHAVIORED_CLASSIFIER__OWNED_BEHAVIOR
|| childFeature == UMLPackage.Literals.BEHAVIORED_CLASSIFIER__INTERFACE_REALIZATION
|| childFeature == UMLPackage.Literals.COMPONENT__REALIZATION;
if (qualify) {
return getString("_UI_CreateChild_text2", //$NON-NLS-1$
new Object[]{getTypeText(childObject),
getFeatureText(childFeature), getTypeText(owner)});
}
return super.getCreateChildText(owner, feature, child, selection);
}
}