com.intellij.openapi.application
Class ApplicationAdapter

java.lang.Object
  extended by com.intellij.openapi.application.ApplicationAdapter
All Implemented Interfaces:
ApplicationListener, java.util.EventListener

public abstract class ApplicationAdapter
extends java.lang.Object
implements ApplicationListener


Constructor Summary
ApplicationAdapter()
           
 
Method Summary
 void applicationExiting()
          Is called when application is exiting.
 void beforeWriteActionStart(java.lang.Object action)
          Is called before action start.
 boolean canExitApplication()
          This method is called to check whether the Application is ready to exit.
 void writeActionFinished(java.lang.Object action)
          Is called on action finish.
 void writeActionStarted(java.lang.Object action)
          Is called on action start.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ApplicationAdapter

public ApplicationAdapter()
Method Detail

canExitApplication

public boolean canExitApplication()
Description copied from interface: ApplicationListener
This method is called to check whether the Application is ready to exit.

Specified by:
canExitApplication in interface ApplicationListener
Returns:
true or false

applicationExiting

public void applicationExiting()
Description copied from interface: ApplicationListener
Is called when application is exiting.

Specified by:
applicationExiting in interface ApplicationListener

beforeWriteActionStart

public void beforeWriteActionStart(java.lang.Object action)
Description copied from interface: ApplicationListener
Is called before action start.

Specified by:
beforeWriteActionStart in interface ApplicationListener

writeActionStarted

public void writeActionStarted(java.lang.Object action)
Description copied from interface: ApplicationListener
Is called on action start.

Specified by:
writeActionStarted in interface ApplicationListener

writeActionFinished

public void writeActionFinished(java.lang.Object action)
Description copied from interface: ApplicationListener
Is called on action finish.

Specified by:
writeActionFinished in interface ApplicationListener