コード例 #1
0
ファイル: WizardPopup.java プロジェクト: ngoanhtan/consulo
 protected final void restartTimer() {
   if (!myAutoSelectionTimer.isRunning()) {
     myAutoSelectionTimer.start();
   } else {
     myAutoSelectionTimer.restart();
   }
 }
コード例 #2
0
ファイル: WizardPopup.java プロジェクト: ngoanhtan/consulo
 @Override
 public final void actionPerformed(ActionEvent e) {
   myAutoSelectionTimer.stop();
   if (getStep().isAutoSelectionEnabled()) {
     onAutoSelectionTimer();
   }
 }
コード例 #3
0
ファイル: WizardPopup.java プロジェクト: ngoanhtan/consulo
  @Override
  public void dispose() {
    super.dispose();

    myAutoSelectionTimer.stop();

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

    if (myOwnerWindow != null && myOwnerListener != null) {
      myOwnerWindow.removeComponentListener(myOwnerListener);
    }
  }
コード例 #4
0
ファイル: WizardPopup.java プロジェクト: ngoanhtan/consulo
 protected final void stopTimer() {
   myAutoSelectionTimer.stop();
 }