[jvm-lang] make java and groovy languages implement JvmLanguage

This commit is contained in:
Daniil Ovchinnikov
2018-03-20 18:01:04 +03:00
parent be0691205f
commit d369f60d9f
2 changed files with 6 additions and 32 deletions
@@ -1,27 +1,14 @@
/*
* Copyright 2000-2015 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.
*/
// 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 file.
package com.intellij.lang.java;
import com.intellij.lang.Language;
import com.intellij.lang.jvm.JvmLanguage;
import org.jetbrains.annotations.NotNull;
/**
* @author max
*/
public class JavaLanguage extends Language {
public class JavaLanguage extends Language implements JvmLanguage {
@NotNull
public static final JavaLanguage INSTANCE = new JavaLanguage();
@@ -1,29 +1,16 @@
/*
* Copyright 2000-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.
*/
// 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 file.
package org.jetbrains.plugins.groovy
import com.intellij.lang.Language
import com.intellij.lang.jvm.JvmLanguage
/**
* All main properties for Groovy language
*
* @author ilyas
*/
object GroovyLanguage : Language("Groovy") {
object GroovyLanguage : Language("Groovy"), JvmLanguage {
override fun isCaseSensitive() = true
}