Package org.broad.igv.ui.action

Examples of org.broad.igv.ui.action.GroupTracksMenuAction


    public JMenuItem getGenotypeGroupItem() {

        JMenuItem item = new JMenuItem("Group By...");
        item.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                (new GroupTracksMenuAction("", 0, IGV.getInstance())).doGroupBy();
            }
        });
        item.setEnabled(AttributeManager.getInstance().getVisibleAttributes().size() > 0);

        return item;
View Full Code Here

TOP

Related Classes of org.broad.igv.ui.action.GroupTracksMenuAction

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.