use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.Attribute in project tdi-studio-se by Talend.
the class MoveDownTreeNodeButton method handleSelectionEvent.
/*
* (non-Javadoc)
*
* @see org.talend.designer.fileoutputJSON.ui.footer.AbstractTreeNodeButton#handleSelectionEvent()
*/
@Override
protected void handleSelectionEvent(TreeSelection selection) {
if (!selection.isEmpty()) {
FOXTreeNode foxNode = (FOXTreeNode) selection.getFirstElement();
if (!(foxNode.getParent() instanceof Element)) {
return;
}
final Element parentNode = (Element) foxNode.getParent();
final List<? extends FOXTreeNode> attrChildren = parentNode.getAttributeChildren();
final List<? extends FOXTreeNode> nameSpaceChildren = parentNode.getNameSpaceChildren();
final List<FOXTreeNode> elementChildren = parentNode.getElementChildren();
List<Integer> attrIndices = new ArrayList<Integer>();
List<Integer> nameSpaceIndices = new ArrayList<Integer>();
List<Integer> elementIndices = new ArrayList<Integer>();
final Iterator iterator = selection.iterator();
while (iterator.hasNext()) {
final Object next = iterator.next();
if (next instanceof Attribute) {
if (attrChildren.contains(next)) {
attrIndices.add(attrChildren.indexOf(next));
}
} else if (next instanceof NameSpaceNode) {
if (nameSpaceChildren.contains(next)) {
nameSpaceIndices.add(nameSpaceChildren.indexOf(next));
}
} else if (next instanceof Element) {
if (elementChildren.contains(next)) {
elementIndices.add(elementChildren.indexOf(next));
}
}
}
Collections.sort(attrIndices);
Collections.sort(nameSpaceIndices);
Collections.sort(elementIndices);
swapElements(attrChildren, attrIndices);
swapElements(nameSpaceChildren, nameSpaceIndices);
swapElements(elementChildren, elementIndices);
treeViewer.refresh(parentNode);
treeViewer.expandAll();
form.redrawLinkers();
treeViewer.setSelection(selection);
form.updateConnection();
}
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.Attribute in project tdi-studio-se by Talend.
the class MoveUpTreeNodeButton method handleSelectionEvent.
/*
* (non-Javadoc)
*
* @see org.talend.designer.fileoutputJSON.ui.footer.AbstractTreeNodeButton#handleSelectionEvent()
*/
@Override
protected void handleSelectionEvent(TreeSelection selection) {
if (!selection.isEmpty()) {
FOXTreeNode foxNode = (FOXTreeNode) selection.getFirstElement();
if (!(foxNode.getParent() instanceof Element)) {
return;
}
final Element parentNode = (Element) foxNode.getParent();
final List<? extends FOXTreeNode> attrChildren = parentNode.getAttributeChildren();
final List<? extends FOXTreeNode> nameSpaceChildren = parentNode.getNameSpaceChildren();
final List<FOXTreeNode> elementChildren = parentNode.getElementChildren();
List<Integer> attrIndices = new ArrayList<Integer>();
List<Integer> nameSpaceIndices = new ArrayList<Integer>();
List<Integer> elementIndices = new ArrayList<Integer>();
final Iterator iterator = selection.iterator();
while (iterator.hasNext()) {
final Object next = iterator.next();
if (next instanceof Attribute) {
if (attrChildren.contains(next)) {
attrIndices.add(attrChildren.indexOf(next));
}
} else if (next instanceof NameSpaceNode) {
if (nameSpaceChildren.contains(next)) {
nameSpaceIndices.add(nameSpaceChildren.indexOf(next));
}
} else if (next instanceof Element) {
if (elementChildren.contains(next)) {
elementIndices.add(elementChildren.indexOf(next));
}
}
}
Collections.sort(attrIndices);
Collections.sort(nameSpaceIndices);
Collections.sort(elementIndices);
swapElements(attrChildren, attrIndices);
swapElements(nameSpaceChildren, nameSpaceIndices);
swapElements(elementChildren, elementIndices);
treeViewer.refresh(parentNode);
treeViewer.expandAll();
form.redrawLinkers();
treeViewer.setSelection(selection);
form.updateConnection();
}
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.Attribute in project tdi-studio-se by Talend.
the class RemoveJSONGroupAction method selectionChanged.
@Override
public void selectionChanged(IStructuredSelection selection) {
FOXTreeNode node = (FOXTreeNode) this.getStructuredSelection().getFirstElement();
if (node == null) {
this.setEnabled(false);
return;
}
if (node instanceof Attribute) {
this.setEnabled(false);
return;
}
if (node instanceof NameSpaceNode) {
this.setEnabled(false);
return;
}
this.setEnabled(node.isGroup());
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.Attribute in project tdi-studio-se by Talend.
the class CreateJSONAttributeAction method createChildNode.
private void createChildNode(FOXTreeNode node) {
String label = "";
while (!JSONUtil.validateLabelForJSON(label)) {
InputDialog dialog = new InputDialog(null, "Input attribute's label", "Input the new attribute's valid label", "", null);
int status = dialog.open();
if (status == InputDialog.OK) {
label = dialog.getValue().trim();
}
if (status == InputDialog.CANCEL) {
return;
}
}
FOXTreeNode child = new Attribute(label);
// child.setRow(node.getRow());
node.addChild(child);
this.jsonViewer.refresh();
jsonViewer.expandAll();
form.redrawLinkers();
}
use of org.talend.metadata.managment.ui.wizard.metadata.xml.node.Attribute in project tdi-studio-se by Talend.
the class CreateJSONElementAction method selectionChanged.
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.actions.SelectionProviderAction#selectionChanged(org.eclipse.jface.viewers.ISelection)
*/
@Override
public void selectionChanged(IStructuredSelection selection) {
FOXTreeNode node = (FOXTreeNode) this.getStructuredSelection().getFirstElement();
if (node == null) {
this.setEnabled(false);
return;
}
if (node instanceof Attribute) {
this.setEnabled(false);
return;
}
if (node instanceof NameSpaceNode) {
this.setEnabled(false);
return;
}
this.setEnabled(true);
}
Aggregations