Package org.antlr.xjlib.appkit.swing

Examples of org.antlr.xjlib.appkit.swing.XJRollOverButtonToggle.addActionListener()


    private JToggleButton createShowCrossLinksButton() {
        XJRollOverButtonToggle button = XJRollOverButtonToggle.createMediumButton(IconManager.shared().getIconShowLinks());
        button.setSelected(true);
        button.setFocusable(false);
        button.setToolTipText("Show links between rules");
        button.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent event) {
                for (Object o : view.getGraphs()) {
                    GGraphGroup gg = (GGraphGroup) o;
                    gg.getPathGroup().toggleShowRuleLinks();
                }
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.