Uses of Interface
com.intellij.openapi.util.Computable

Packages that use Computable
com.intellij.ide.util.projectWizard Provides interfaces for building customized "New Project" and "New Module" wizards. 
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.psi Provides interfaces for working with the Program Source Interface (IDEA's internal representation of the program structure). 
 

Uses of Computable in com.intellij.ide.util.projectWizard
 

Methods in com.intellij.ide.util.projectWizard with parameters of type Computable
abstract  ModuleWizardStep ProjectWizardStepFactory.createProjectJdkStep(WizardContext context, JavaModuleBuilder builder, Computable<java.lang.Boolean> isVisibile, javax.swing.Icon icon, java.lang.String helpId)
           
 

Uses of Computable in com.intellij.openapi.application
 

Methods in com.intellij.openapi.application with parameters of type Computable
<T> T
Application.runReadAction(Computable<T> computation)
          Runs the specified computation in a read action.
<T> T
Application.runWriteAction(Computable<T> computation)
          Runs the specified computation in a write action.
 

Uses of Computable in com.intellij.psi
 

Methods in com.intellij.psi with parameters of type Computable
abstract
<T> T
PsiDocumentManager.commitAndRunReadAction(Computable<T> computation)
          Commits the documents and runs the specified operation, which returns a value, in a read action.