Java Code Examples for com.intellij.openapi.module.JavaModuleType#BUILD_TOOLS_GROUP

The following examples show how to use com.intellij.openapi.module.JavaModuleType#BUILD_TOOLS_GROUP . 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: DubboPluginModuleBuilder.java    From intellij-idea-plugin with Apache License 2.0 4 votes vote down vote up
@Override
public String getParentGroup() {
    return JavaModuleType.BUILD_TOOLS_GROUP;
}
 
Example 2
Source File: NutzBootModuleBuilder.java    From NutzCodeInsight with Apache License 2.0 4 votes vote down vote up
@Override
public String getParentGroup() {
    return JavaModuleType.BUILD_TOOLS_GROUP;
}
 
Example 3
Source File: SlingMavenModuleBuilder.java    From aem-ide-tooling-4-intellij with Apache License 2.0 4 votes vote down vote up
@Override
public String getParentGroup() {
    return JavaModuleType.BUILD_TOOLS_GROUP;
}
 
Example 4
Source File: RPiJavaModuleBuilder.java    From embeddedlinux-jvmdebugger-intellij with Apache License 2.0 4 votes vote down vote up
/**
 * Parent group in project creator dialog
 * @return
 */
@Override
public String getParentGroup() {
    return JavaModuleType.BUILD_TOOLS_GROUP;
}