Package org.apache.airavata.workflow.model.component

Examples of org.apache.airavata.workflow.model.component.ComponentRegistry


            return;
        }

        if (selectionPath.getPathCount() >= 2) {
            final ComponentTreeNode selectedNode = (ComponentTreeNode) selectionPath.getPath()[1];
            ComponentRegistry registry = selectedNode.getComponentRegistry();
            final ComponentTreeNode componentTree = ComponentController.getComponentTree(registry);

            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    ComponentTreeNode root = ComponentSelector.this.treeModel.getRoot();
View Full Code Here


    }

  @Override
  public void update(Observable observable, Object o) {
    if ((observable instanceof XBayaConfiguration) && (o instanceof ComponentRegistry)){
      ComponentRegistry componentRegistry=(ComponentRegistry)o;
      if (observableRegistry!=null){
        observableRegistry.deleteObserver(this);
      }
      if (componentRegistry instanceof JCRComponentRegistry){
        AiravataAPI registry = ((JCRComponentRegistry)componentRegistry).getAiravataAPI();
View Full Code Here

            return;
        }

        if (selectionPath.getPathCount() >= 2) {
            final ComponentTreeNode selectedNode = (ComponentTreeNode) selectionPath.getPath()[1];
            ComponentRegistry registry = selectedNode.getComponentRegistry();
            final ComponentTreeNode componentTree = ComponentController.getComponentTree(registry);

            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    ComponentTreeNode root = ComponentSelector.this.treeModel.getRoot();
View Full Code Here

    }

  @Override
  public void update(Observable observable, Object o) {
    if ((observable instanceof XBayaConfiguration) && (o instanceof ComponentRegistry)){
      ComponentRegistry componentRegistry=(ComponentRegistry)o;
      load(componentRegistry);
    }
  }
View Full Code Here

    }

  @Override
  public void update(Observable observable, Object o) {
    if ((observable instanceof XBayaConfiguration) && (o instanceof ComponentRegistry)){
      ComponentRegistry componentRegistry=(ComponentRegistry)o;
      if (observableRegistry!=null){
        observableRegistry.deleteObserver(this);
      }
      if (componentRegistry instanceof JCRComponentRegistry){
        AiravataAPI registry = ((JCRComponentRegistry)componentRegistry).getAiravataAPI();
View Full Code Here

    }

  private void reloadComponentRegistryNode(
      final ComponentTreeNode selectedNode)
      throws ComponentRegistryException {
    ComponentRegistry registry = selectedNode.getComponentRegistry();
    final ComponentTreeNode componentTree = ComponentController.getComponentTree(registry);

    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            ComponentTreeNode root = ComponentSelector.this.treeModel.getRoot();
View Full Code Here

TOP

Related Classes of org.apache.airavata.workflow.model.component.ComponentRegistry

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.