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);
}