Example #1
0
  /**
   * 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(
            EurPackage.Literals.ARGUMENT__STRATEGY, EurFactory.eINSTANCE.createStrategy()));

    newChildDescriptors.add(
        createChildParameter(
            EurPackage.Literals.ARGUMENT__ASSUMPTION, EurFactory.eINSTANCE.createAssumption()));

    newChildDescriptors.add(
        createChildParameter(
            EurPackage.Literals.ARGUMENT__CONTEXT, EurFactory.eINSTANCE.createContext()));

    newChildDescriptors.add(
        createChildParameter(
            EurPackage.Literals.ARGUMENT__SOLUTION, EurFactory.eINSTANCE.createSolution()));

    newChildDescriptors.add(
        createChildParameter(
            EurPackage.Literals.ARGUMENT__ARGUMENT, EurFactory.eINSTANCE.createArgument()));

    newChildDescriptors.add(
        createChildParameter(
            EurPackage.Literals.ARGUMENT__CRITERIA, EurFactory.eINSTANCE.createCriteria()));

    newChildDescriptors.add(
        createChildParameter(
            EurPackage.Literals.ARGUMENT__JUSTIFICATION,
            EurFactory.eINSTANCE.createJustification()));
  }
Example #2
0
 /**
  * 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;
 }
Example #3
0
 /**
  * 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(EurPackage.Literals.ARGUMENT__STRATEGY);
     childrenFeatures.add(EurPackage.Literals.ARGUMENT__ASSUMPTION);
     childrenFeatures.add(EurPackage.Literals.ARGUMENT__CONTEXT);
     childrenFeatures.add(EurPackage.Literals.ARGUMENT__SOLUTION);
     childrenFeatures.add(EurPackage.Literals.ARGUMENT__ARGUMENT);
     childrenFeatures.add(EurPackage.Literals.ARGUMENT__CRITERIA);
     childrenFeatures.add(EurPackage.Literals.ARGUMENT__JUSTIFICATION);
   }
   return childrenFeatures;
 }
Example #4
0
  /**
   * 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(Argument.class)) {
      case EurPackage.ARGUMENT__STRATEGY:
      case EurPackage.ARGUMENT__ASSUMPTION:
      case EurPackage.ARGUMENT__CONTEXT:
      case EurPackage.ARGUMENT__SOLUTION:
      case EurPackage.ARGUMENT__ARGUMENT:
      case EurPackage.ARGUMENT__CRITERIA:
      case EurPackage.ARGUMENT__JUSTIFICATION:
        fireNotifyChanged(
            new ViewerNotification(notification, notification.getNotifier(), true, false));
        return;
    }
    super.notifyChanged(notification);
  }