Package org.codinjutsu.tools.jenkins.view

Examples of org.codinjutsu.tools.jenkins.view.SelectJobDialog


        SwingUtilities.invokeLater(new Runnable() {
            public void run() {

                final BrowserPanel browserPanel = BrowserPanel.getInstance(project);

                SelectJobDialog dialog = new SelectJobDialog(selectedChangeLists, browserPanel.getJobs(), project);
                dialog.setLocationRelativeTo(null);
                dialog.setMaximumSize(new Dimension(300, 200));
                dialog.pack();
                dialog.setVisible(true);
            }
        });
    }
View Full Code Here

TOP

Related Classes of org.codinjutsu.tools.jenkins.view.SelectJobDialog

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.