/**
   * 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
  public void collectNewPropertyDescriptors(Collection<Object> newChildDescriptors, Object object) {
    super.collectNewPropertyDescriptors(newChildDescriptors, object);

    newChildDescriptors.add(
        createChildParameter(
            PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__REFERENCE_ENTITY,
            CommonFactory.eINSTANCE.createTargetEntityType()));

    newChildDescriptors.add(
        createChildParameter(
            PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__RECONFIGURATION,
            PageFactory.eINSTANCE.createReconfigurationType()));

    newChildDescriptors.add(
        createChildParameter(
            PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__RECONFIGURATION,
            PageFactory.eINSTANCE.createFunctionReconfigurationType()));

    newChildDescriptors.add(
        createChildParameter(
            PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__RECONFIGURATION,
            PageFactory.eINSTANCE.createPropertyReconfigurationType()));

    newChildDescriptors.add(
        createChildParameter(
            PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__RECONFIGURATION,
            PageFactory.eINSTANCE.createVariableReconfigurationType()));
  }
 /**
  * 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 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(PagePackage.Literals.UI_FILE_TYPE__TEXT);
   }
   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);

      addIsReferenceInterfacePropertyDescriptor(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(PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__REFERENCE_ENTITY);
     childrenFeatures.add(PagePackage.Literals.UI_REFERENCE_ENTITY_TYPE__RECONFIGURATION);
   }
   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
  public void collectNewPropertyDescriptors(Collection<Object> newChildDescriptors, Object object) {
    super.collectNewPropertyDescriptors(newChildDescriptors, object);

    newChildDescriptors.add(
        createChildParameter(
            PagePackage.Literals.UI_FILE_TYPE__TEXT,
            PageFactory.eINSTANCE.createStringPropertyType()));
  }
  /**
   * 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(UIFileType.class)) {
      case PagePackage.UI_FILE_TYPE__TEXT:
        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(UIReferenceEntityType.class)) {
      case PagePackage.UI_REFERENCE_ENTITY_TYPE__IS_REFERENCE_INTERFACE:
        fireNotifyChanged(
            new ViewerNotification(notification, notification.getNotifier(), false, true));
        return;
      case PagePackage.UI_REFERENCE_ENTITY_TYPE__REFERENCE_ENTITY:
      case PagePackage.UI_REFERENCE_ENTITY_TYPE__RECONFIGURATION:
        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);
   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);
 }