use of org.talend.repository.json.ui.wizards.action.ImportTreeFromJSONAction in project tdi-studio-se by Talend.
the class JSONFileOutputStep2Form method createAction.
private void createAction() {
createAction = new CreateJSONElementAction(JSONViewer, this, "Add Sub-element");
createAttributeAction = new CreateJSONAttributeAction(JSONViewer, this, "Add Attribute");
createNamespaceAction = new CreateJSONNameSpaceAction(JSONViewer, this, "Add Name Space");
deleteAction = new DeleteJSONNodeAction(JSONViewer, this, "Delete");
disconnectAction = new JSONDisconnectAction(JSONViewer, this, "Disconnect Linker");
fixValueAction = new FixValueAction(JSONViewer, this, "Set A Fix Value");
importFromJSONAction = new ImportTreeFromJSONAction(JSONViewer, this, "Import JSON Tree");
setLoopAction = new SetForJSONLoopAction(JSONViewer, this, "Set As Loop Element");
setGroupAction = new SetJSONGroupAction(JSONViewer, this, "Set As Group Element");
removeGroupAction = new RemoveJSONGroupAction(JSONViewer, "Remove Group Element", this);
}
Aggregations