Search in sources :

Example 1 with StackLayout

use of org.eclipse.draw2d.StackLayout in project tdi-studio-se by Talend.

the class DatabaseBusinessItemEditPart method createNodeFigure.

/**
     * 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
     */
protected NodeFigure createNodeFigure() {
    NodeFigure figure = createNodePlate();
    figure.setLayoutManager(new StackLayout());
    IFigure shape = createNodeShape();
    figure.add(shape);
    contentPane = setupContentPane(shape);
    return figure;
}
Also used : DefaultSizeNodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure) NodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure) StackLayout(org.eclipse.draw2d.StackLayout) IFigure(org.eclipse.draw2d.IFigure)

Example 2 with StackLayout

use of org.eclipse.draw2d.StackLayout in project tdi-studio-se by Talend.

the class DecisionBusinessItemEditPart method createNodeFigure.

/**
     * 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
     */
protected NodeFigure createNodeFigure() {
    NodeFigure figure = createNodePlate();
    figure.setLayoutManager(new StackLayout());
    IFigure shape = createNodeShape();
    figure.add(shape);
    contentPane = setupContentPane(shape);
    return figure;
}
Also used : DefaultSizeNodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure) NodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure) StackLayout(org.eclipse.draw2d.StackLayout) IFigure(org.eclipse.draw2d.IFigure)

Example 3 with StackLayout

use of org.eclipse.draw2d.StackLayout in project tdi-studio-se by Talend.

the class ActorBusinessItemEditPart method createNodeFigure.

/**
     * 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
     */
protected NodeFigure createNodeFigure() {
    NodeFigure figure = createNodePlate();
    figure.setLayoutManager(new StackLayout());
    IFigure shape = createNodeShape();
    figure.add(shape);
    contentPane = setupContentPane(shape);
    return figure;
}
Also used : DefaultSizeNodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure) NodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure) StackLayout(org.eclipse.draw2d.StackLayout) IFigure(org.eclipse.draw2d.IFigure)

Example 4 with StackLayout

use of org.eclipse.draw2d.StackLayout in project tdi-studio-se by Talend.

the class TerminalBusinessItemEditPart method createNodeFigure.

/**
     * 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
     */
protected NodeFigure createNodeFigure() {
    NodeFigure figure = createNodePlate();
    figure.setLayoutManager(new StackLayout());
    IFigure shape = createNodeShape();
    figure.add(shape);
    contentPane = setupContentPane(shape);
    return figure;
}
Also used : DefaultSizeNodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure) NodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure) StackLayout(org.eclipse.draw2d.StackLayout) IFigure(org.eclipse.draw2d.IFigure)

Example 5 with StackLayout

use of org.eclipse.draw2d.StackLayout in project tdi-studio-se by Talend.

the class ActionBusinessItemEditPart method createNodeFigure.

/**
     * 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
     */
protected NodeFigure createNodeFigure() {
    NodeFigure figure = createNodePlate();
    figure.setLayoutManager(new StackLayout());
    IFigure shape = createNodeShape();
    figure.add(shape);
    contentPane = setupContentPane(shape);
    return figure;
}
Also used : DefaultSizeNodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure) NodeFigure(org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure) StackLayout(org.eclipse.draw2d.StackLayout) IFigure(org.eclipse.draw2d.IFigure)

Aggregations

IFigure (org.eclipse.draw2d.IFigure)11 StackLayout (org.eclipse.draw2d.StackLayout)11 DefaultSizeNodeFigure (org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure)11 NodeFigure (org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure)11