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

      addAlgorithmPropertyDescriptor(object);
      addAlgorithmParameterRefPropertyDescriptor(object);
      addBuffersizePropertyDescriptor(object);
      addCryptoProviderPropertyDescriptor(object);
      addInitVectorRefPropertyDescriptor(object);
      addInlinePropertyDescriptor(object);
      addKeyRefPropertyDescriptor(object);
      addMacAlgorithmPropertyDescriptor(object);
      addShouldAppendHMACPropertyDescriptor(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(CryptoDataFormat.class)) {
      case SpringPackage.CRYPTO_DATA_FORMAT__ALGORITHM:
      case SpringPackage.CRYPTO_DATA_FORMAT__ALGORITHM_PARAMETER_REF:
      case SpringPackage.CRYPTO_DATA_FORMAT__BUFFERSIZE:
      case SpringPackage.CRYPTO_DATA_FORMAT__CRYPTO_PROVIDER:
      case SpringPackage.CRYPTO_DATA_FORMAT__INIT_VECTOR_REF:
      case SpringPackage.CRYPTO_DATA_FORMAT__INLINE:
      case SpringPackage.CRYPTO_DATA_FORMAT__KEY_REF:
      case SpringPackage.CRYPTO_DATA_FORMAT__MAC_ALGORITHM:
      case SpringPackage.CRYPTO_DATA_FORMAT__SHOULD_APPEND_HMAC:
        fireNotifyChanged(
            new ViewerNotification(notification, notification.getNotifier(), false, true));
        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);
 }