Uses of Class
com.intellij.openapi.application.ModalityState

Packages that use ModalityState
com.intellij.ide.util.gotoByName Provides interfaces for invoking "choose by name" dialogs similar to the standard "Go to Class", "Go to File" and "Go to Symbol" dialogs. 
com.intellij.openapi.application Provides interfaces for working with IDEA's threading model, getting basic information about the IDEA application and listening to IDEA lifecycle events. 
com.intellij.openapi.progress Provides interfaces for displaying progress dialogs and registering Productivity Hints-like components which are displayed in progress dialogs. 
com.intellij.util Provides assorted utility classes. 
 

Uses of ModalityState in com.intellij.ide.util.gotoByName
 

Methods in com.intellij.ide.util.gotoByName with parameters of type ModalityState
 void ChooseByNamePopupComponent.invoke(ChooseByNamePopupComponent.Callback callback, ModalityState modalityState, boolean allowMultipleSelection)
           
 

Uses of ModalityState in com.intellij.openapi.application
 

Fields in com.intellij.openapi.application declared as ModalityState
static ModalityState ModalityState.NON_MMODAL
           
 

Methods in com.intellij.openapi.application that return ModalityState
static ModalityState ModalityState.current()
           
static ModalityState ModalityState.defaultModalityState()
           
 ModalityState Application.getCurrentModalityState()
          Returns the current modality state for the Swing dispatch thread.
 ModalityState Application.getDefaultModalityState()
          Returns the current modality state for the current thread (which may be different from the Swing dispatch thread).
 ModalityState Application.getModalityStateForComponent(java.awt.Component c)
          Returns the modality state for the dialog to which the specified component belongs.
 ModalityState Application.getNoneModalityState()
          Returns the modality state representing the state when no modal dialogs are active.
static ModalityState ModalityState.stateForComponent(java.awt.Component component)
           
 

Methods in com.intellij.openapi.application with parameters of type ModalityState
abstract  boolean ModalityState.dominates(ModalityState anotherState)
           
static void LaterInvocator.invokeAndWait(java.lang.Runnable runnable, ModalityState modalityState)
          Deprecated. use Application.invokeAndWait(java.lang.Runnable, com.intellij.openapi.application.ModalityState) instead.
 void Application.invokeAndWait(java.lang.Runnable runnable, ModalityState modalityState)
          Causes runnable.run() to be executed synchronously on the AWT event dispatching thread, when IDEA is in the specified modality state.
static void LaterInvocator.invokeLater(java.lang.Runnable runnable, ModalityState state)
          Deprecated. use Application.invokeLater(java.lang.Runnable, com.intellij.openapi.application.ModalityState) instead.
 void Application.invokeLater(java.lang.Runnable runnable, ModalityState state)
          Causes runnable.run() to be executed asynchronously on the AWT event dispatching thread, when IDEA is in the specified modality state.
 

Uses of ModalityState in com.intellij.openapi.progress
 

Methods in com.intellij.openapi.progress that return ModalityState
 ModalityState ProgressIndicator.getModalityState()
           
 

Uses of ModalityState in com.intellij.util
 

Methods in com.intellij.util with parameters of type ModalityState
 void Alarm.addRequest(java.lang.Runnable request, int delay, ModalityState modalityState)