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;
}
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;
}
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;
}
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;
}
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;
}
Aggregations