Example #1
0
 protected final void restartTimer() {
   if (!myAutoSelectionTimer.isRunning()) {
     myAutoSelectionTimer.start();
   } else {
     myAutoSelectionTimer.restart();
   }
 }
Example #2
0
 @Override
 public final void actionPerformed(ActionEvent e) {
   myAutoSelectionTimer.stop();
   if (getStep().isAutoSelectionEnabled()) {
     onAutoSelectionTimer();
   }
 }
Example #3
0
  @Override
  public void dispose() {
    super.dispose();

    myAutoSelectionTimer.stop();

    PopupDispatcher.unsetShowing(this);
    PopupDispatcher.clearRootIfNeeded(this);

    if (myOwnerWindow != null && myOwnerListener != null) {
      myOwnerWindow.removeComponentListener(myOwnerListener);
    }
  }
Example #4
0
 protected final void stopTimer() {
   myAutoSelectionTimer.stop();
 }