Examples of HerokuProjectService


Examples of com.jetbrains.heroku.service.HerokuProjectService

    private final JTabbedPane tabs = new JTabbedPane(1);

    public void createToolWindowContent(Project project, ToolWindow toolWindow) {
        ContentFactory contentFactory = ContentFactory.SERVICE.getInstance();
        final HerokuProjectService herokuProjectService = ServiceManager.getService(project,HerokuProjectService.class);
        Content content = contentFactory.createContent(createPanel(herokuProjectService), "", false);
        toolWindow.getContentManager().addContent(content);
    }
View Full Code Here

Examples of com.jetbrains.heroku.service.HerokuProjectService

            e.printStackTrace();
        }
    }

    private void createToolWindow(Project project) {
        final HerokuProjectService herokuProjectService = ServiceManager.getService(project, HerokuProjectService.class);
        addAll(new HerokuApplicationWindow(herokuProjectService),
                new HerokuProcessesWindow(herokuProjectService), new HerokuConfigWindow(herokuProjectService),
                new HerokuAddonsWindow(herokuProjectService), new HerokuCollaboratorsWindow(herokuProjectService),
                new HerokuLogsWindow(herokuProjectService), new HerokuReleasesWindow(herokuProjectService),
                new HerokuSetupWindow(herokuProjectService, this));
        if (herokuProjectService.isHerokuProject())
            getContentManager().setSelectedContent(getContent(HerokuApplicationWindow.class));
        else
            getContentManager().setSelectedContent(getContent(HerokuSetupWindow.class));
    }
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.