Package org.broad.igv.cli_plugin.ui

Examples of org.broad.igv.cli_plugin.ui.RunPlugin


                        toolMenu.add(cmdItem);
                        if (isValid || toolPath == null) {
                            cmdItem.addActionListener(new ActionListener() {
                                @Override
                                public void actionPerformed(ActionEvent e) {
                                    RunPlugin runPlugin = null;
                                    try {
                                        runPlugin = new RunPlugin(IGV.getMainFrame(), pluginSpecReader, tool, command);
                                    } catch (IllegalStateException e1) {
                                        MessageUtils.showErrorMessage(e1.getMessage(), e1);
                                        return;
                                    }
                                    runPlugin.setVisible(true);
                                }
                            });
                            cmdItem.setEnabled(true);
                        } else {
                            cmdItem.setEnabled(false);
View Full Code Here

TOP

Related Classes of org.broad.igv.cli_plugin.ui.RunPlugin

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.