From 49de7becfdab4a5b3647639592ec630bc126b1c4 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Tue, 16 Oct 2018 21:37:18 +0300 Subject: [PATCH] CLion/AppCode: Disable module type check for Kotlin Facet adding --- .../idea/facet/KotlinFacetType.kt.cidr183 | 30 +++++++++++++ .../idea/facet/KotlinFacetTypeImpl.kt.cidr183 | 45 +++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 idea/idea-analysis/src/org/jetbrains/kotlin/idea/facet/KotlinFacetType.kt.cidr183 create mode 100644 idea/src/org/jetbrains/kotlin/idea/facet/KotlinFacetTypeImpl.kt.cidr183 diff --git a/idea/idea-analysis/src/org/jetbrains/kotlin/idea/facet/KotlinFacetType.kt.cidr183 b/idea/idea-analysis/src/org/jetbrains/kotlin/idea/facet/KotlinFacetType.kt.cidr183 new file mode 100644 index 00000000000..b9e684a408d --- /dev/null +++ b/idea/idea-analysis/src/org/jetbrains/kotlin/idea/facet/KotlinFacetType.kt.cidr183 @@ -0,0 +1,30 @@ +/* + * Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license + * that can be found in the license/LICENSE.txt file. + */ + +package org.jetbrains.kotlin.idea.facet + +import com.intellij.facet.FacetType +import com.intellij.facet.FacetTypeId +import com.intellij.facet.FacetTypeRegistry +import com.intellij.openapi.module.JavaModuleType +import com.intellij.openapi.module.ModuleType +import org.jetbrains.kotlin.idea.KotlinIcons +import javax.swing.Icon + +abstract class KotlinFacetType : + FacetType(TYPE_ID, ID, NAME) { + companion object { + const val ID = "kotlin-language" + val TYPE_ID = FacetTypeId(ID) + const val NAME = "Kotlin" + + val INSTANCE + get() = FacetTypeRegistry.getInstance().findFacetType(TYPE_ID) + } + + override fun isSuitableModuleType(moduleType: ModuleType<*>) = true + + override fun getIcon(): Icon = KotlinIcons.SMALL_LOGO +} \ No newline at end of file diff --git a/idea/src/org/jetbrains/kotlin/idea/facet/KotlinFacetTypeImpl.kt.cidr183 b/idea/src/org/jetbrains/kotlin/idea/facet/KotlinFacetTypeImpl.kt.cidr183 new file mode 100644 index 00000000000..95a0c8b0d57 --- /dev/null +++ b/idea/src/org/jetbrains/kotlin/idea/facet/KotlinFacetTypeImpl.kt.cidr183 @@ -0,0 +1,45 @@ +/* + * Copyright 2010-2016 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.jetbrains.kotlin.idea.facet + +import com.intellij.facet.Facet +import com.intellij.facet.ui.FacetEditor +import com.intellij.openapi.module.JavaModuleType +import com.intellij.openapi.module.Module +import com.intellij.openapi.module.ModuleType +import com.intellij.openapi.project.Project +import org.jetbrains.kotlin.idea.KotlinIcons +import javax.swing.Icon + +class KotlinFacetTypeImpl : KotlinFacetType() { + + override fun isSuitableModuleType(moduleType: ModuleType<*>) = true + + override fun getIcon(): Icon = KotlinIcons.SMALL_LOGO + + override fun createDefaultConfiguration() = KotlinFacetConfigurationImpl() + + override fun createFacet( + module: Module, + name: String, + configuration: KotlinFacetConfiguration, + underlyingFacet: Facet<*>? + ) = KotlinFacet(module, name, configuration) + + override fun createMultipleConfigurationsEditor(project: Project, editors: Array) = + MultipleKotlinFacetEditor(project, editors) +} \ No newline at end of file