/** * 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( LandusePackage.Literals.LAND_USE_TYPE__LOD0_MULTI_SURFACE, GmlFactory.eINSTANCE.createMultiSurfacePropertyType())); newChildDescriptors.add( createChildParameter( LandusePackage.Literals.LAND_USE_TYPE__LOD1_MULTI_SURFACE, GmlFactory.eINSTANCE.createMultiSurfacePropertyType())); newChildDescriptors.add( createChildParameter( LandusePackage.Literals.LAND_USE_TYPE__LOD2_MULTI_SURFACE, GmlFactory.eINSTANCE.createMultiSurfacePropertyType())); newChildDescriptors.add( createChildParameter( LandusePackage.Literals.LAND_USE_TYPE__LOD3_MULTI_SURFACE, GmlFactory.eINSTANCE.createMultiSurfacePropertyType())); newChildDescriptors.add( createChildParameter( LandusePackage.Literals.LAND_USE_TYPE__LOD4_MULTI_SURFACE, GmlFactory.eINSTANCE.createMultiSurfacePropertyType())); }
/** * 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); addClassPropertyDescriptor(object); addFunctionPropertyDescriptor(object); addUsagePropertyDescriptor(object); } return itemPropertyDescriptors; }
/** * 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(LandusePackage.Literals.LAND_USE_TYPE__LOD0_MULTI_SURFACE); childrenFeatures.add(LandusePackage.Literals.LAND_USE_TYPE__LOD1_MULTI_SURFACE); childrenFeatures.add(LandusePackage.Literals.LAND_USE_TYPE__LOD2_MULTI_SURFACE); childrenFeatures.add(LandusePackage.Literals.LAND_USE_TYPE__LOD3_MULTI_SURFACE); childrenFeatures.add(LandusePackage.Literals.LAND_USE_TYPE__LOD4_MULTI_SURFACE); childrenFeatures.add( LandusePackage.Literals.LAND_USE_TYPE__GENERIC_APPLICATION_PROPERTY_OF_LAND_USE_GROUP); } return childrenFeatures; }
/** * 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(LandUseType.class)) { case LandusePackage.LAND_USE_TYPE__CLASS: case LandusePackage.LAND_USE_TYPE__FUNCTION: case LandusePackage.LAND_USE_TYPE__USAGE: fireNotifyChanged( new ViewerNotification(notification, notification.getNotifier(), false, true)); return; case LandusePackage.LAND_USE_TYPE__LOD0_MULTI_SURFACE: case LandusePackage.LAND_USE_TYPE__LOD1_MULTI_SURFACE: case LandusePackage.LAND_USE_TYPE__LOD2_MULTI_SURFACE: case LandusePackage.LAND_USE_TYPE__LOD3_MULTI_SURFACE: case LandusePackage.LAND_USE_TYPE__LOD4_MULTI_SURFACE: case LandusePackage.LAND_USE_TYPE__GENERIC_APPLICATION_PROPERTY_OF_LAND_USE_GROUP: fireNotifyChanged( new ViewerNotification(notification, notification.getNotifier(), true, false)); return; } super.notifyChanged(notification); }