Package org.openbp.cockpit.modeler.figures.generic

Examples of org.openbp.cockpit.modeler.figures.generic.MoveableTitleFigure


    this.socket = (NodeSocket) modelObject;
    socket.setRepresentation(this);

    // Create title figure holding the name of the Socket.
    // This will return the node name in case of entry or final node sockets.
    titleFigure = new MoveableTitleFigure(getReferredProcessElement());
    titleFigure.setTitleFormat(skin.getSocketTitleFormat());
    titleFigure.setVerboseDisplay(true);
    addContent(titleFigure, CONTENT_TEXT);

    // Add the socket parameters
View Full Code Here


    setEndDecoration(endDecoration);
    setAnimationDecoration(animationDecoration);

    textLocator = new SplineLocator();

    label = new MoveableTitleFigure();
    label.connect(this);
  }
View Full Code Here

    }
    else
    {
      rotatingTitleFigure = new SimpleTextTagFigure(this, null);

      TitleFigure titleFigure = new MoveableTitleFigure(node);
      titleFigure.setVerboseDisplay(true);

      // Text floating around figure, add as name figure
      rotatingTitleFigure.addContent(titleFigure, AbstractTagFigure.CONTENT_TEXT);
      rotatingTitleFigure.setContentState(AbstractTagFigure.CONTENT_TEXT);
View Full Code Here

    processVariableFigure = new ProcessVariableFigure(param, this);
    addContent(processVariableFigure, CONTENT_DATA);

    globalDistanceLocator = new GlobalDistanceLocator();

    globalTitleLabel = new MoveableTitleFigure(param);
    globalTitleLabel.setVerboseDisplay(true);
    globalTitleLabel.connect(this);

    // Setting the content state will also layout the tag
    setContentState(CONTENT_ICON | CONTENT_DATA);
View Full Code Here

TOP

Related Classes of org.openbp.cockpit.modeler.figures.generic.MoveableTitleFigure

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.