Package org.woped.core.model

Examples of org.woped.core.model.IntPair


        if (tempArc == null)
          continue;
       
        for (short k = 0; k < currentArcMap.getArcPoints().size(); k++) {

          IntPair ip = (IntPair) currentArcMap.getArcPoints().get(k);
          point = new Point2D.Double(ip.getX1() + deltaX, ip.getX2()
              + deltaY);

          tempArc.addPoint(point);
        }
View Full Code Here


            creationMap = CreationMap.createMap();
        }
        creationMap.setPosition(getPosition());
        creationMap.setId(getId());
        creationMap.setName(getNameValue());
        creationMap.setSize(new IntPair(GraphConstants.getSize(getAttributes())));
        creationMap.setNamePosition(getNameModel().getPosition());
        creationMap.setType(getType());

        creationMap.setBpeldata(this.BpelData);
       
View Full Code Here

    {
      target.setPosition(node.getGraphics().getPosition().getX()
          .intValue(), node.getGraphics().getPosition()
          .getY().intValue());
      if (node.getGraphics().isSetDimension())
        target.setSize(new IntPair(new Dimension(node
                                                     .getGraphics().getDimension().getX().intValue(),
                                                     node.getGraphics().getDimension().getY()
                                                     .intValue())));
    }
    if (node.getName()!=null)       
View Full Code Here

TOP

Related Classes of org.woped.core.model.IntPair

Copyright © 2018 www.massapicom. 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.