/** * Copyright (c) 2011 committers of YAKINDU 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: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgraph.provider; 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.IItemPropertyDescriptor; import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; import org.eclipse.emf.edit.provider.ViewerNotification; import org.yakindu.base.base.BasePackage; import org.yakindu.base.types.TypesFactory; import org.yakindu.sct.model.sgraph.SGraphFactory; import org.yakindu.sct.model.sgraph.SGraphPackage; import org.yakindu.sct.model.sgraph.Statechart; /** * This is the item provider adapter for a {@link org.yakindu.sct.model.sgraph.Statechart} object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public class StatechartItemProvider extends SpecificationElementItemProvider { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final String copyright = "Copyright (c) 2011 committers of YAKINDU and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\nContributors:\r\ncommitters of YAKINDU - initial API and implementation\r\n"; /** * This constructs an instance from a factory and a notifier. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public StatechartItemProvider(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); addNamespacePropertyDescriptor(object); addNamePropertyDescriptor(object); addDocumentationPropertyDescriptor(object); addDomainIDPropertyDescriptor(object); } return itemPropertyDescriptors; } /** * This adds a property descriptor for the Namespace feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addNamespacePropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_ScopedElement_namespace_feature"), getString("_UI_PropertyDescriptor_description", "_UI_ScopedElement_namespace_feature", "_UI_ScopedElement_type"), SGraphPackage.Literals.SCOPED_ELEMENT__NAMESPACE, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Name feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addNamePropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_NamedElement_name_feature"), getString("_UI_PropertyDescriptor_description", "_UI_NamedElement_name_feature", "_UI_NamedElement_type"), BasePackage.Literals.NAMED_ELEMENT__NAME, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Documentation feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addDocumentationPropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_DocumentedElement_documentation_feature"), getString("_UI_PropertyDescriptor_description", "_UI_DocumentedElement_documentation_feature", "_UI_DocumentedElement_type"), BasePackage.Literals.DOCUMENTED_ELEMENT__DOCUMENTATION, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Domain ID feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addDomainIDPropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_DomainElement_domainID_feature"), getString("_UI_PropertyDescriptor_description", "_UI_DomainElement_domainID_feature", "_UI_DomainElement_type"), BasePackage.Literals.DOMAIN_ELEMENT__DOMAIN_ID, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, 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}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) { if (childrenFeatures == null) { super.getChildrenFeatures(object); childrenFeatures.add(SGraphPackage.Literals.REACTIVE_ELEMENT__LOCAL_REACTIONS); childrenFeatures.add(SGraphPackage.Literals.SCOPED_ELEMENT__SCOPES); childrenFeatures.add(SGraphPackage.Literals.COMPOSITE_ELEMENT__REGIONS); childrenFeatures.add(SGraphPackage.Literals.STATECHART__ANNOTATIONS); } 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 Statechart.gif. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object getImage(Object object) { return overlayImage(object, getResourceLocator().getImage("full/obj16/Statechart")); } /** * This returns the label text for the adapted class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String getText(Object object) { String label = ((Statechart)object).getName(); return label == null || label.length() == 0 ? getString("_UI_Statechart_type") : getString("_UI_Statechart_type") + " " + label; } /** * 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(Statechart.class)) { case SGraphPackage.STATECHART__NAMESPACE: case SGraphPackage.STATECHART__NAME: case SGraphPackage.STATECHART__DOCUMENTATION: case SGraphPackage.STATECHART__DOMAIN_ID: fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); return; case SGraphPackage.STATECHART__LOCAL_REACTIONS: case SGraphPackage.STATECHART__SCOPES: case SGraphPackage.STATECHART__REGIONS: case SGraphPackage.STATECHART__ANNOTATIONS: 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 (SGraphPackage.Literals.REACTIVE_ELEMENT__LOCAL_REACTIONS, SGraphFactory.eINSTANCE.createTransition())); newChildDescriptors.add (createChildParameter (SGraphPackage.Literals.SCOPED_ELEMENT__SCOPES, SGraphFactory.eINSTANCE.createScope())); newChildDescriptors.add (createChildParameter (SGraphPackage.Literals.COMPOSITE_ELEMENT__REGIONS, SGraphFactory.eINSTANCE.createRegion())); newChildDescriptors.add (createChildParameter (SGraphPackage.Literals.STATECHART__ANNOTATIONS, TypesFactory.eINSTANCE.createAnnotation())); } }