/** * 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 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( XcorePackage.Literals.XPACKAGE__IMPORT_DIRECTIVES, XcoreFactory.eINSTANCE.createXImportDirective())); newChildDescriptors.add( createChildParameter( XcorePackage.Literals.XPACKAGE__ANNOTATION_DIRECTIVES, XcoreFactory.eINSTANCE.createXAnnotationDirective())); newChildDescriptors.add( createChildParameter( XcorePackage.Literals.XPACKAGE__CLASSIFIERS, XcoreFactory.eINSTANCE.createXClass())); newChildDescriptors.add( createChildParameter( XcorePackage.Literals.XPACKAGE__CLASSIFIERS, XcoreFactory.eINSTANCE.createXDataType())); newChildDescriptors.add( createChildParameter( XcorePackage.Literals.XPACKAGE__CLASSIFIERS, XcoreFactory.eINSTANCE.createXEnum())); }
/** * 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(XcorePackage.Literals.XTYPED_ELEMENT__TYPE); } return childrenFeatures; }
/** * 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( XcorePackage.Literals.XTYPED_ELEMENT__TYPE, XcoreFactory.eINSTANCE.createXGenericType())); }
/** * 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(XcorePackage.Literals.XPACKAGE__IMPORT_DIRECTIVES); childrenFeatures.add(XcorePackage.Literals.XPACKAGE__ANNOTATION_DIRECTIVES); childrenFeatures.add(XcorePackage.Literals.XPACKAGE__CLASSIFIERS); } return childrenFeatures; }
/** * 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); addUnorderedPropertyDescriptor(object); addUniquePropertyDescriptor(object); addMultiplicityPropertyDescriptor(object); } return itemPropertyDescriptors; }
/** * 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(XPackage.class)) { case XcorePackage.XPACKAGE__IMPORT_DIRECTIVES: case XcorePackage.XPACKAGE__ANNOTATION_DIRECTIVES: case XcorePackage.XPACKAGE__CLASSIFIERS: fireNotifyChanged( new ViewerNotification(notification, notification.getNotifier(), true, false)); return; } super.notifyChanged(notification); }
/** * 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(XTypedElement.class)) { case XcorePackage.XTYPED_ELEMENT__UNORDERED: case XcorePackage.XTYPED_ELEMENT__UNIQUE: case XcorePackage.XTYPED_ELEMENT__MULTIPLICITY: fireNotifyChanged( new ViewerNotification(notification, notification.getNotifier(), false, true)); return; case XcorePackage.XTYPED_ELEMENT__TYPE: fireNotifyChanged( new ViewerNotification(notification, notification.getNotifier(), true, false)); return; } super.notifyChanged(notification); }