Package org.twodividedbyzero.idea.findbugs.gui.common

Examples of org.twodividedbyzero.idea.findbugs.gui.common.ToolBarButton


        public void actionPerformed(final ActionEvent e) {
          _popup.processKeyEvent(new KeyEvent(_prevButton, 401, System.currentTimeMillis(), InputEvent.SHIFT_DOWN_MASK, KeyEvent.VK_F3, KeyEvent.CHAR_UNDEFINED));
        }
      };
      _prevButton = new ToolBarButton(prevAction, _prevIcon);
      add(_prevButton);


      final AbstractBar.AbstractComponentAction nextAction = new AbstractComponentAction("Next Occurence", "Next Occurence (Ctrl+F3)", KeyEvent.VK_F3, 0, KeyEvent.VK_F3) {
        private static final long serialVersionUID = 0L;


        public void actionPerformed(final ActionEvent e) {
          _popup.processKeyEvent(new KeyEvent(_nextButton, 401, System.currentTimeMillis(), 0, KeyEvent.VK_F3, KeyEvent.CHAR_UNDEFINED));
        }
      };
      _nextButton = new ToolBarButton(nextAction, _nextIcon);
      add(_nextButton);
    }
View Full Code Here

TOP

Related Classes of org.twodividedbyzero.idea.findbugs.gui.common.ToolBarButton

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.