Package lupos.gui.operatorgraph.visualeditor.visualrif.guielements

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.guielements.GroupPanel


    return this.groups.get(groupName);
  }

  public GroupPanel createNewGroup(){
    final String name = this.checkName("Group", "Group", 0);
    this.activeGroup = new GroupPanel(this.visualRifEditor, name);
    this.groups.put(name, this.activeGroup);
    this.visualRifEditor.getTreePane().addNewGroup(this.activeGroup,this.visualRifEditor.getDocumentContainer().getNameOfActiveElement());
    this.printGroups();
    final TreePath path = this.activeGroup.getGroupPath();
    this.visualRifEditor.getDocumentContainer().getActiveDocument().getDocumentEditorPane().updateRuleNameInVisualGraphsComponentArray(name, name);
View Full Code Here


  }

  @Override
  @SuppressWarnings("unchecked")
  public void removeElement(final String elem, final TreeNode parentNode) {
    final GroupPanel ret = this.groups.remove(elem);
    this.activeGroup = null;
    this.visualRifEditor.setRightComponent(new JPanel());
  }
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.visualrif.guielements.GroupPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.