Examples of NodeFigure


Examples of org.jbpm.ui.common.figure.NodeFigure

            Point location = point0.getTranslated(translation);
            location.x -= ACTION_SIZE/2;
            location.y -= ACTION_SIZE/2;
            return location;
        } else {
            NodeFigure nodeFigure = (NodeFigure) figure;
            List<IFigure> children = nodeFigure.getActionsContainer().getChildren();
            IFigure prevFigure;
            if (children.size() > actionIndex) {
                prevFigure = children.get(children.size() - 1 - actionIndex);
            } else {
                prevFigure = children.get(0);
View Full Code Here

Examples of org.openbp.cockpit.modeler.figures.process.NodeFigure

      }
      else
      {
        if (next instanceof SocketFigure)
        {
          NodeFigure nodeFigure = (NodeFigure) ((SocketFigure) next).getParent();
          Node node = nodeFigure.getNode();
          if (node instanceof SingleSocketNode)
          {
            // We may not delete the only socket of a node
            return false;
          }
View Full Code Here
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.