com.intellij.openapi.module.JavaModuleType Java Examples
The following examples show how to use
com.intellij.openapi.module.JavaModuleType.
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: QuarkusFacetType.java From intellij-quarkus with Eclipse Public License 2.0 | 4 votes |
@Override public boolean isSuitableModuleType(ModuleType moduleType) { return moduleType instanceof JavaModuleType; }
Example #2
Source File: DubboPluginModuleBuilder.java From intellij-idea-plugin with Apache License 2.0 | 4 votes |
@Override public String getParentGroup() { return JavaModuleType.BUILD_TOOLS_GROUP; }
Example #3
Source File: NutzBootModuleBuilder.java From NutzCodeInsight with Apache License 2.0 | 4 votes |
@Override public String getParentGroup() { return JavaModuleType.BUILD_TOOLS_GROUP; }
Example #4
Source File: MuleFrameworkUtil.java From mule-intellij-plugins with Apache License 2.0 | 4 votes |
public static boolean isAcceptableModuleType(ModuleType type) { return type instanceof JavaModuleType; }
Example #5
Source File: SlingMavenModuleBuilder.java From aem-ide-tooling-4-intellij with Apache License 2.0 | 4 votes |
@Override public String getParentGroup() { return JavaModuleType.BUILD_TOOLS_GROUP; }
Example #6
Source File: SlingModuleFacetType.java From aem-ide-tooling-4-intellij with Apache License 2.0 | 4 votes |
public boolean isSuitableModuleType(ModuleType moduleType) { return moduleType instanceof JavaModuleType; }
Example #7
Source File: RPiJavaModuleBuilder.java From embeddedlinux-jvmdebugger-intellij with Apache License 2.0 | 4 votes |
/** * Parent group in project creator dialog * @return */ @Override public String getParentGroup() { return JavaModuleType.BUILD_TOOLS_GROUP; }
Example #8
Source File: PolygeneFacetType.java From attic-polygene-java with Apache License 2.0 | 4 votes |
public final boolean isSuitableModuleType( ModuleType moduleType ) { return moduleType instanceof JavaModuleType; }
Example #9
Source File: AsposeMavenModuleBuilder.java From Aspose.OCR-for-Java with MIT License | 4 votes |
@Override public String getGroupName() { return JavaModuleType.JAVA_GROUP; }