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

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.guielements.operatorPanel.GroupOperatorPanel


    final Component[] c = this.visualGraphs.get(0).getComponents();

    final int pos = this.getArrayPosition(groupName);
    this.visualGraphs.get(0).remove(pos);

    final GroupOperatorPanel gop = (GroupOperatorPanel)c[pos];
    gop.delete();
  }
View Full Code Here


  public void updateGroupNameInVisualGraphsComponentArray(final String oldName, final String newName){
    final Component[] c = this.visualGraphs.get(0).getComponents();

    for(int i = 0 ; i < c.length ; i++){
      if(c[i] instanceof GroupOperatorPanel){
        final GroupOperatorPanel gop = (GroupOperatorPanel)c[i];
        if(gop.getGroupName().equals(oldName)){
          gop.setGroupName(newName);
          gop.setGroupLabelName(newName);
        }
      }
    }
  }
View Full Code Here

  public void prefixRemoved(String arg0, String arg1) {}

  public AbstractGuiComponent<Operator> draw(GraphWrapper arg0,
      VisualGraph<Operator> arg1) {
    this.panel = new GroupOperatorPanel(arg1, arg0, this, true);
    return this.panel;
  }
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.visualrif.guielements.operatorPanel.GroupOperatorPanel

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.