Examples of AddPluginFromGistAction


Examples of liveplugin.toolwindow.addplugin.git.AddPluginFromGistAction

        actions.addAll(asList(
            new Separator(),
            new AddNewPluginAction(),
            new AddPluginFromDiskAction()
        ));
        actions.add(new AddPluginFromGistAction());
        if (PluginToolWindowManager.addFromGitHubAction != null) {
          actions.add(PluginToolWindowManager.addFromGitHubAction);
        }
        return actions.toArray(new AnAction[actions.size()]);
      }
View Full Code Here

Examples of liveplugin.toolwindow.addplugin.git.AddPluginFromGistAction

    private AnAction createAddPluginsGroup() {
      DefaultActionGroup actionGroup = new DefaultActionGroup("Add Plugin", true);
      actionGroup.add(new AddNewPluginAction());
      actionGroup.add(new AddPluginFromDiskAction());
      actionGroup.add(new AddPluginFromGistAction());
      if (addFromGitHubAction != null)
        actionGroup.add(addFromGitHubAction);
      actionGroup.add(createAddPluginsExamplesGroup());
      return actionGroup;
    }
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.