use of org.talend.repository.json.ui.wizards.buttons.MoveUpTreeNodeButton in project tdi-studio-se by Talend.
the class JSONFileOutputStep2Form method initToolBar.
private void initToolBar(Composite parent) {
// tool buttons
Composite toolBarComp = new Composite(parent, SWT.BORDER);
GridLayout layout = new GridLayout();
layout.numColumns = 4;
GridData data = new GridData(GridData.FILL_HORIZONTAL);
toolBarComp.setLayout(layout);
toolBarComp.setLayoutData(data);
AddTreeNodeButton addTreeNodeBtn = new AddTreeNodeButton(toolBarComp, this);
RemoveTreeNodeButton removeNodeBtn = new RemoveTreeNodeButton(toolBarComp, this);
MoveUpTreeNodeButton moveUpBtn = new MoveUpTreeNodeButton(toolBarComp, this);
MoveDownTreeNodeButton moveDown = new MoveDownTreeNodeButton(toolBarComp, this);
}
Aggregations