Examples of CreateJCloudsContainerAction


Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

    }

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

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

  protected void setCreateSshContainerAction(CreateSshContainerAction createSshContainerAction) {
    this.createSshContainerAction = createSshContainerAction;
  }

  protected CreateJCloudsContainerAction createCloudContainerAction(Fabric fabric) {
    return new CreateJCloudsContainerAction(fabric);
  }
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

    if (getContainer().isRoot()) {
      menu.add(new CreateChildContainerAction(this));
    }

    menu.add(new CreateJCloudsContainerAction(getVersionNode(), this, null));
    menu.add(new CreateSshContainerAction(getVersionNode(), this, null));

  }
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

   * (org.eclipse.jface.action.IMenuManager)
   */
  @Override
  public void provideContextMenu(IMenuManager menu) {
    CreateChildContainerAction.addIfSingleRootContainer(menu, getFabric());
    menu.add(new CreateJCloudsContainerAction(getFabric()));
    menu.add(new CreateSshContainerAction(getFabric()));
  }
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

    protected List<?> getPropertySourcesForNode(Object node) {
        return node == null ? Collections.emptyList() : ((ContainersNode) node).getPropertySourceList();
    }

    protected CreateJCloudsContainerAction createCloudContainerAction(Object current) {
        return new CreateJCloudsContainerAction(getFabric());
    }
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

    protected void setCreateSshContainerAction(CreateSshContainerAction createSshContainerAction) {
        this.createSshContainerAction = createSshContainerAction;
    }

    protected CreateJCloudsContainerAction createCloudContainerAction(Fabric fabric) {
        return new CreateJCloudsContainerAction(fabric);
    }
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

  protected void setCreateSshContainerAction(CreateSshContainerAction createSshContainerAction) {
    this.createSshContainerAction = createSshContainerAction;
  }

  protected CreateJCloudsContainerAction createCloudContainerAction(Fabric fabric) {
    return new CreateJCloudsContainerAction(fabric);
  }
View Full Code Here

Examples of org.fusesource.ide.fabric8.ui.actions.jclouds.CreateJCloudsContainerAction

    super(node.getFabric());
    this.node = node;

    setCreateChildContainerAction(new CreateChildContainerAction(node));
    setCreateSshContainerAction(new CreateSshContainerAction(node.getVersionNode(), null, node));
    setCreateCloudContainerAction(new CreateJCloudsContainerAction(node.getVersionNode(), null, node));

    updateData();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.