Package org.apache.airavata.xbaya.ui.widgets.component

Examples of org.apache.airavata.xbaya.ui.widgets.component.ComponentTreeNode


  }

  private static void addComponentReferencesToTree(ComponentTreeNode tree,
      List<ComponentReference> componentReferenceList) {
    for (ComponentReference componentReference : componentReferenceList) {
      ComponentTreeNode componentTreeNode = new ComponentTreeNode(componentReference);
      if (componentReference.isParentComponent()){
        addComponentReferencesToTree(componentTreeNode, componentReference.getChildComponentReferences());
      }
      tree.add(componentTreeNode);
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.xbaya.ui.widgets.component.ComponentTreeNode

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.