/**
   * 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);

      addFieldPropertyDescriptor(object);
      addExclusiveLBoundPropertyDescriptor(object);
      addExclusiveUBoundPropertyDescriptor(object);
      addComputationalLBoundPropertyDescriptor(object);
      addComputationalUBoundPropertyDescriptor(object);
      addTotalLBoundPropertyDescriptor(object);
      addTotalUBoundPropertyDescriptor(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(ESMFActionFieldGetBounds.class)) {
      case ESMFPackage.ESMF_ACTION_FIELD_GET_BOUNDS__EXCLUSIVE_LBOUND:
      case ESMFPackage.ESMF_ACTION_FIELD_GET_BOUNDS__EXCLUSIVE_UBOUND:
      case ESMFPackage.ESMF_ACTION_FIELD_GET_BOUNDS__COMPUTATIONAL_LBOUND:
      case ESMFPackage.ESMF_ACTION_FIELD_GET_BOUNDS__COMPUTATIONAL_UBOUND:
      case ESMFPackage.ESMF_ACTION_FIELD_GET_BOUNDS__TOTAL_LBOUND:
      case ESMFPackage.ESMF_ACTION_FIELD_GET_BOUNDS__TOTAL_UBOUND:
        fireNotifyChanged(
            new ViewerNotification(notification, notification.getNotifier(), false, true));
        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);
 }