/** * Copyright (c) 2015 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.stext.stext.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.common.util.ResourceLocator; import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; import org.yakindu.base.types.TypeAlias; import org.yakindu.base.types.TypesPackage; import org.yakindu.base.types.provider.TypeAliasItemProvider; import org.yakindu.sct.model.stext.stext.StextFactory; /** * This is the item provider adapter for a * {@link org.yakindu.sct.model.stext.stext.TypeAliasDefinition} object. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @generated */ public class TypeAliasDefinitionItemProvider extends TypeAliasItemProvider { /** * This constructs an instance from a factory and a notifier. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @generated */ public TypeAliasDefinitionItemProvider(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); } return itemPropertyDescriptors; } /** * This returns TypeAliasDefinition.gif. * <!-- begin-user-doc --> <!-- * end-user-doc --> * @generated */ @Override public Object getImage(Object object) { return overlayImage(object, getResourceLocator().getImage("full/obj16/TypeAliasDefinition")); } /** * This returns the label text for the adapted class. <!-- begin-user-doc * --> <!-- end-user-doc --> * * @generated NOT */ @Override public String getText(Object object) { TypeAlias alias = (TypeAlias) object; String label = ((TypeAlias) object).getName(); StringBuilder builder = null; if (label != null) { builder = new StringBuilder(label); if (alias.getOriginType() != null) { builder.append(" : "); builder.append(alias.getOriginType().getName()); } } else { builder = new StringBuilder(); builder.append(getString("_UI_TypeAlias_type")); } return builder.toString(); } /** * 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); 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 (TypesPackage.Literals.PACKAGE_MEMBER__ANNOTATIONS, StextFactory.eINSTANCE.createArgumentedAnnotation())); } /** * Return the resource locator for this item provider's resources. <!-- * begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public ResourceLocator getResourceLocator() { return STextEditPlugin.INSTANCE; } }