com.intellij.openapi.application.ApplicationAdapter Java Examples
The following examples show how to use
com.intellij.openapi.application.ApplicationAdapter.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GoogleAnalyticsApplicationComponent.java From jetbrains-plugin-graph-database-support with Apache License 2.0 | 6 votes |
@Override public void initComponent() { applicationInfo = ApplicationInfo.getInstance(); AnalyticsListener.init(); ga = new CustomGoogleAnalytics(TRACKING_ID); ga.getConfig().setValidate(GraphConstants.IS_DEVELOPMENT); sessionStart(); ApplicationManager.getApplication().addApplicationListener(new ApplicationAdapter() { @Override public void applicationExiting() { sessionEnd(); } }); }