Package OntoUML.diagram.edit.parts

Source Code of OntoUML.diagram.edit.parts.DerivationEditPart$DerivationFigure

package OntoUML.diagram.edit.parts;

import org.eclipse.draw2d.Connection;
import org.eclipse.draw2d.Graphics;
import org.eclipse.draw2d.RotatableDecoration;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.gef.EditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.ConnectionNodeEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editparts.ITreeBranchEditPart;
import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles;
import org.eclipse.gmf.runtime.draw2d.ui.figures.PolylineConnectionEx;
import org.eclipse.gmf.runtime.draw2d.ui.figures.WrappingLabel;
import org.eclipse.gmf.runtime.notation.View;

import OntoUML.Derivation;
import OntoUML.Property;
import OntoUML.subQuantityOf;

/**
* @generated
*/
public class DerivationEditPart extends ConnectionNodeEditPart implements
    ITreeBranchEditPart {

  /**
   * @generated
   */
  public static final int VISUAL_ID = 4004;

  /**
   * @generated
   */
  public DerivationEditPart(View view) {
    super(view);
  }

  /**
   * @generated
   */
  protected void createDefaultEditPolicies() {
    super.createDefaultEditPolicies();
    installEditPolicy(
        EditPolicyRoles.SEMANTIC_ROLE,
        new OntoUML.diagram.edit.policies.DerivationItemSemanticEditPolicy());
  }

  /**
   * @generated
   */
  protected boolean addFixedChild(EditPart childEditPart) {
    if (childEditPart instanceof OntoUML.diagram.edit.parts.DerivationNameEditPart) {
      ((OntoUML.diagram.edit.parts.DerivationNameEditPart) childEditPart)
          .setLabel(getPrimaryShape()
              .getFigureDerivationNameLabelFigure());
      return true;
    }
    return false;
  }

  /**
   * @generated
   */
  protected void addChildVisual(EditPart childEditPart, int index) {
    if (addFixedChild(childEditPart)) {
      return;
    }
    super.addChildVisual(childEditPart, -1);
  }

  /**
   * Creates figure for this edit part.
   *
   * Body of this method does not depend on settings in generation model
   * so you may safely remove <i>generated</i> tag and modify it.
   *
   * @generated
   */

  /**
   * <!-- begin-user-doc -->
   * Changed.
   * <!-- end-user-doc -->
   * @generated NOT
   */
  protected Connection createConnectionFigure() {
    return new DerivationFigure(this);
  }

  /**
   * @generated
   */
  public DerivationFigure getPrimaryShape() {
    return (DerivationFigure) getFigure();
  }

  /**
   * <!-- begin-user-doc -->
   * Created to update the exibition of the meta-attributes.
   * <!-- end-user-doc -->
   * @generated NOT
   */
  protected void handleNotificationEvent(Notification event) {
    getPrimaryShape().updateContents(this);
    super.handleNotificationEvent(event);
  }

  /**
   * @generated
   */
  public class DerivationFigure extends PolylineConnectionEx {

    /**
     * @generated
     */
    private WrappingLabel fFigureDerivationNameLabelFigure;

    /**
     * @generated
     */
    public DerivationFigure() {
      this.setLineStyle(Graphics.LINE_DASH);

      createContents();
      setTargetDecoration(createTargetDecoration());
    }

    /**
     * @generated
     */
    private void createContents() {

      fFigureDerivationNameLabelFigure = new WrappingLabel();
      fFigureDerivationNameLabelFigure.setText("Name");

      this.add(fFigureDerivationNameLabelFigure);

    }

    /**
     * <!-- begin-user-doc -->
     * Changed to receive DerivationEditPart.
     * <!-- end-user-doc -->
     * @generated NOT
     */
    public DerivationFigure(DerivationEditPart derivationeditpart) {
      this.setLineStyle(Graphics.LINE_DASH);

      createContents(derivationeditpart);
      setTargetDecoration(createTargetDecoration());
    }

    /**
     * <!-- begin-user-doc -->
     * Changed.
     * <!-- end-user-doc -->
     * @generated NOT
     */
    private void createContents(DerivationEditPart derivationeditpart) {

      fFigureDerivationNameLabelFigure = new WrappingLabel();
      fFigureDerivationNameLabelFigure.setText("Name");

      this.add(fFigureDerivationNameLabelFigure);

      Derivation d = (Derivation) ((View) derivationeditpart.getModel())
          .getElement();

      for (int i = 0; i < d.getSource().size(); ++i) {
        ((Property) d.getSource().get(i)).setLower(((Property) d
            .getSource().get(i)).derivarLowerDerivation());
        ((Property) d.getSource().get(i)).setUpper(((Property) d
            .getSource().get(i)).derivarUpperDerivation());
      }

      //      fFigureDerivationSourceCardinalitiesLabelFigure = new WrappingLabel();
      //      String text = new String("");
      //      if ((((Property) d.getSource().get(0)).getLower() == 0)
      //          && (((Property) d.getSource().get(0)).getUpper() == -1))
      //        text = "*";
      //      else {
      //        text = text
      //            .concat(((Integer) (((Property) d.getSource().get(0))
      //                .getLower())).toString());
      //        if (((Property) d.getSource().get(0)).getUpper() != ((Property) d
      //            .getSource().get(0)).getLower()) {
      //          text = text.concat("..");
      //          if (((Property) d.getSource().get(0)).getUpper() == -1)
      //            text = text.concat("*");
      //          else
      //            text = text.concat(((Integer) (((Property) d
      //                .getSource().get(0)).getUpper())).toString());
      //        }
      //      }
      //
      //      fFigureDerivationSourceCardinalitiesLabelFigure.setText(text);
      //
      //      this.add(fFigureDerivationSourceCardinalitiesLabelFigure);
      //
      //      fFigureDerivationTargetCardinalitiesLabelFigure = new WrappingLabel();
      //      text = "";
      //      if ((((Property) d.getTarget().get(0)).getLower() == 0)
      //          && (((Property) d.getTarget().get(0)).getUpper() == -1))
      //        text = "*";
      //      else {
      //        text = text
      //            .concat(((Integer) (((Property) d.getTarget().get(0))
      //                .getLower())).toString());
      //        if (((Property) d.getTarget().get(0)).getUpper() != ((Property) d
      //            .getTarget().get(0)).getLower()) {
      //          text = text.concat("..");
      //          if (((Property) d.getTarget().get(0)).getUpper() == -1)
      //            text = text.concat("*");
      //          else
      //            text = text.concat(((Integer) (((Property) d
      //                .getTarget().get(0)).getUpper())).toString());
      //        }
      //      }
      //
      //      fFigureDerivationTargetCardinalitiesLabelFigure.setText(text);
      //
      //      this.add(fFigureDerivationTargetCardinalitiesLabelFigure);

      if (!d.getSource().isEmpty())
        ((Property) d.getSource().get(0))
            .setContainer(d.getContainer());
      if (!d.getTarget().isEmpty())
        ((Property) d.getTarget().get(0))
            .setContainer(d.getContainer());

    }

    /**
     * <!-- begin-user-doc -->
     * Created to update the exibition of the meta-attributes.
     * <!-- end-user-doc -->
     * @generated NOT
     */
    private void updateContents(DerivationEditPart derivationeditpart) {

      Derivation d = (Derivation) ((View) derivationeditpart.getModel())
          .getElement();

      for (int i = 0; i < d.getSource().size(); ++i) {
        ((Property) d.getSource().get(i)).setLower(((Property) d
            .getSource().get(i)).derivarLowerDerivation());
        ((Property) d.getSource().get(i)).setUpper(((Property) d
            .getSource().get(i)).derivarUpperDerivation());
      }

      //      String text = new String("");
      //      if ((((Property) d.getSource().get(0)).getLower() == 0)
      //          && (((Property) d.getSource().get(0)).getUpper() == -1))
      //        text = "*";
      //      else {
      //        text = text
      //            .concat(((Integer) (((Property) d.getSource().get(0))
      //                .getLower())).toString());
      //        if (((Property) d.getSource().get(0)).getUpper() != ((Property) d
      //            .getSource().get(0)).getLower()) {
      //          text = text.concat("..");
      //          if (((Property) d.getSource().get(0)).getUpper() == -1)
      //            text = text.concat("*");
      //          else
      //            text = text.concat(((Integer) (((Property) d
      //                .getSource().get(0)).getUpper())).toString());
      //        }
      //      }
      //
      //      fFigureDerivationSourceCardinalitiesLabelFigure.setText(text);
      //
      //      this.add(fFigureDerivationSourceCardinalitiesLabelFigure);
      //
      //      text = "";
      //      if ((((Property) d.getTarget().get(0)).getLower() == 0)
      //          && (((Property) d.getTarget().get(0)).getUpper() == -1))
      //        text = "*";
      //      else {
      //        text = text
      //            .concat(((Integer) (((Property) d.getTarget().get(0))
      //                .getLower())).toString());
      //        if (((Property) d.getTarget().get(0)).getUpper() != ((Property) d
      //            .getTarget().get(0)).getLower()) {
      //          text = text.concat("..");
      //          if (((Property) d.getTarget().get(0)).getUpper() == -1)
      //            text = text.concat("*");
      //          else
      //            text = text.concat(((Integer) (((Property) d
      //                .getTarget().get(0)).getUpper())).toString());
      //        }
      //      }
      //
      //      fFigureDerivationTargetCardinalitiesLabelFigure.setText(text);
      //
      //      this.add(fFigureDerivationTargetCardinalitiesLabelFigure);

    }

    /**
     * <!-- begin-user-doc -->
     * Changed.
     * <!-- end-user-doc -->
     * @generated NOT
     */
    private RotatableDecoration createTargetDecoration() {
      OntoUML.diagram.edit.parts.DerivationCustomFigure df = new OntoUML.diagram.edit.parts.DerivationCustomFigure();

      return df;
    }

    /**
     * @generated
     */
    public WrappingLabel getFigureDerivationNameLabelFigure() {
      return fFigureDerivationNameLabelFigure;
    }

  }

}
TOP

Related Classes of OntoUML.diagram.edit.parts.DerivationEditPart$DerivationFigure

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.