Example #1
0
 /** {@inheritDoc} */
 @Override
 public KeyAdapter onKeyRelease(final HotkeyData hotkey, final KeyEventRunnable runnable) {
   return EventUtils.onKeyRelease(this, hotkey, runnable);
 }
Example #2
0
 /** {@inheritDoc} */
 @Override
 public FocusAdapter onFocusLoss(final FocusEventRunnable runnable) {
   return EventUtils.onFocusLoss(this, runnable);
 }
Example #3
0
 /** {@inheritDoc} */
 @Override
 public KeyAdapter onKeyPress(final KeyEventRunnable runnable) {
   return EventUtils.onKeyPress(this, runnable);
 }
Example #4
0
 /** {@inheritDoc} */
 @Override
 public MouseAdapter onMenuTrigger(final MouseEventRunnable runnable) {
   return EventUtils.onMenuTrigger(this, runnable);
 }
Example #5
0
 /** {@inheritDoc} */
 @Override
 public MouseAdapter onDoubleClick(final MouseEventRunnable runnable) {
   return EventUtils.onDoubleClick(this, runnable);
 }
Example #6
0
 /** {@inheritDoc} */
 @Override
 public MouseAdapter onMouseClick(
     final MouseButton mouseButton, final MouseEventRunnable runnable) {
   return EventUtils.onMouseClick(this, mouseButton, runnable);
 }
Example #7
0
 /** {@inheritDoc} */
 @Override
 public MouseAdapter onMouseDrag(final MouseEventRunnable runnable) {
   return EventUtils.onMouseDrag(this, runnable);
 }