| package ${PACKAGE_NAME}; | |
| import com.intellij.openapi.components.ApplicationComponent; | |
| import org.jetbrains.annotations.NotNull; | |
| #parse("File Header.java") | |
| public class ${NAME} implements ApplicationComponent { | |
| public ${NAME}() { | |
| } | |
| public void initComponent() { | |
| // TODO: insert component initialization logic here | |
| } | |
| public void disposeComponent() { | |
| // TODO: insert component disposal logic here | |
| } | |
| @NotNull | |
| public String getComponentName() { | |
| return "${NAME}"; | |
| } | |
| } |