Package org.apache.axis2.tools.idea
Class ActionsPlugin
- java.lang.Object
-
- org.apache.axis2.tools.idea.ActionsPlugin
-
- All Implemented Interfaces:
com.intellij.openapi.components.ApplicationComponent
,com.intellij.openapi.components.BaseComponent
public class ActionsPlugin extends Object implements com.intellij.openapi.components.ApplicationComponent
SampleApplicationPlugin
Application level plugin sample showing IDEA OpenAPI basics.
ImplementsApplicationComponent
interface.
-
-
Constructor Summary
Constructors Constructor Description ActionsPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
disposeComponent()
This method is called on plugin disposal.String
getComponentName()
Returns the name of componentvoid
initComponent()
Method is called after plugin is already created and configured.
-
-
-
Method Detail
-
initComponent
public void initComponent()
Method is called after plugin is already created and configured. Plugin can start to communicate with other plugins only in this method.- Specified by:
initComponent
in interfacecom.intellij.openapi.components.BaseComponent
-
disposeComponent
public void disposeComponent()
This method is called on plugin disposal.- Specified by:
disposeComponent
in interfacecom.intellij.openapi.components.BaseComponent
-
getComponentName
public String getComponentName()
Returns the name of component- Specified by:
getComponentName
in interfacecom.intellij.openapi.components.BaseComponent
- Returns:
- String representing component name. Use PluginName.ComponentName notation to avoid conflicts.
-
-