Package org.fusesource.ide.fabric8.ui.actions

Examples of org.fusesource.ide.fabric8.ui.actions.RefreshAction


    }

    @Override
    protected CreateSshContainerAction createSshContainerAction(Object current) {
        final ProfileNode node = (ProfileNode) current;
        return new CreateSshContainerAction(node.getVersionNode(), null, node);
    }
View Full Code Here


  public void init(ICommonActionExtensionSite site) {
    super.init(site);
    this.site = site;
    String viewId = site.getViewSite().getId();
    doubleClickAction = new DoubleClickAction();
    refreshAction = new RefreshAction(viewId);
    StructuredViewer viewer = site.getStructuredViewer();
    refreshAction.setViewer(viewer);
    FabricPlugin.getLogger().debug("============================= View ID: " + viewId);
  }
View Full Code Here

    }

    @Override
    protected CreateJCloudsContainerAction createCloudContainerAction(Object current) {
        final ProfileNode node = (ProfileNode) current;
        return new CreateJCloudsContainerAction(node.getVersionNode(), null, node);
    }
View Full Code Here

        return node == null ? Collections.emptyList() : ((ProfileNode) node).getPropertySourceList();
    }

    @Override
    protected CreateJCloudsContainerAction createCloudContainerAction(Object current) {
        final ProfileNode node = (ProfileNode) current;
        return new CreateJCloudsContainerAction(node.getVersionNode(), null, node);
    }
View Full Code Here

        return new CreateJCloudsContainerAction(node.getVersionNode(), null, node);
    }

    @Override
    protected CreateSshContainerAction createSshContainerAction(Object current) {
        final ProfileNode node = (ProfileNode) current;
        return new CreateSshContainerAction(node.getVersionNode(), null, node);
    }
View Full Code Here

        return new CreateSshContainerAction(node.getVersionNode(), null, node);
    }

    @Override
    protected CreateChildContainerAction createChildContainerAction(Object current) {
        final ProfileNode node = (ProfileNode) current;
        return new CreateChildContainerAction(node);
    }
View Full Code Here

  }
 
  private void processDependenciesChange(List dependencies) {
    this.formModel.clearDependencies();
    for (Object o : dependencies) {
      ProfileNode p = (ProfileNode)o;
      this.formModel.addDependency(p.getProfile());
    }
  }
View Full Code Here

    createProfileForm(profile, inner);

    createLabel(inner, Messages.profileParentsLabel);
    parentsForm.createColumnsViewer(inner);
    parentsForm.setProfilesViewerInput(node.getVersionNode());
    parentsForm.getProfilesViewer().setContentProvider(new ProfileParentsContentProvider(node));

    GridData gridData = new GridData(GridData.FILL_HORIZONTAL);
    gridData.horizontalSpan = 2;
    parentsForm.getProfilesViewer().getTree().setLayoutData(gridData);
    List<ProfileDTO> parents = profile.getParents();
View Full Code Here

    maxInstances.addFocusListener(focusListener);
   
    createLabel(inner, "Dependencies");
    parentsForm.createColumnsViewer(inner);
    parentsForm.setProfilesViewerInput(node.getVersionNode());
    parentsForm.getProfilesViewer().setContentProvider(new ProfileParentsContentProvider(node));

    GridData gridData = new GridData(GridData.FILL_HORIZONTAL);
    gridData.horizontalSpan = 2;
    parentsForm.getProfilesViewer().getTree().setLayoutData(gridData);
    parentsForm.getProfilesViewer().addSelectionChangedListener(new ISelectionChangedListener() {
View Full Code Here

        }
        return Status.OK_STATUS;
      }

    };
    openStackAction = new OpenStackTraceAction(this, LogMessages.openStackTrace);
    setDoubleClickAction(openStackAction);
  }
View Full Code Here

TOP

Related Classes of org.fusesource.ide.fabric8.ui.actions.RefreshAction

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.