Package org.jbpm.ui.common.figure

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


        return (NodeFigure) super.getFigure();
    }
   
    @Override
    protected IFigure createFigure() {
        NodeFigure figure = (NodeFigure) super.createFigure();
        figure.setName(getModel().getName());
        updateTooltip(figure);
        return figure;
    }
View Full Code Here


        return getModel().getSwimlane();
    }
   
    @Override
    protected IFigure createFigure() {
        NodeFigure figure = (NodeFigure) super.createFigure();
        figure.setSwimlaneName(getSwimlane());
        return figure;
    }
View Full Code Here

            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

TOP

Related Classes of org.jbpm.ui.common.figure.NodeFigure

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.