/**
  * 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
  */
 public Collection getChildrenFeatures(Object object) {
   if (childrenFeatures == null) {
     super.getChildrenFeatures(object);
     childrenFeatures.add(BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS);
     childrenFeatures.add(BusinessPackage.Literals.BUSINESS_PROCESS__LOCAL_REPOSITORY_COPY);
   }
   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
   */
  public void notifyChanged(Notification notification) {
    updateChildren(notification);

    switch (notification.getFeatureID(BusinessProcess.class)) {
      case BusinessPackage.BUSINESS_PROCESS__BUSINESS_ITEMS:
      case BusinessPackage.BUSINESS_PROCESS__LOCAL_REPOSITORY_COPY:
        fireNotifyChanged(
            new ViewerNotification(notification, notification.getNotifier(), true, false));
        return;
    }
    super.notifyChanged(notification);
  }
 /**
  * This returns the property descriptors for the adapted class.
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @generated
  */
 public List 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
   */
  protected void collectNewChildDescriptors(Collection newChildDescriptors, Object object) {
    super.collectNewChildDescriptors(newChildDescriptors, object);

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createBusinessItemRelationship()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createDirectionalBusinessItemRelationship()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createBidirectionalBusinessItemRelationship()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createDecisionBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createActionBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createTerminalBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createDataBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createDocumentBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createInputBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createListBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createDatabaseBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createActorBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createEllipseBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__BUSINESS_ITEMS,
            BusinessFactory.eINSTANCE.createGearBusinessItem()));

    newChildDescriptors.add(
        createChildParameter(
            BusinessPackage.Literals.BUSINESS_PROCESS__LOCAL_REPOSITORY_COPY,
            BusinessFactory.eINSTANCE.createRepository()));
  }