com.jetbrains.pluginverifier.warnings.CompatibilityWarning.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of verifier-core Show documentation
Show all versions of verifier-core Show documentation
Core classes of JetBrains Plugin Verifier with verification rules, general usage detection and bytecode verification engine
/*
* Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
*/
package com.jetbrains.pluginverifier.warnings
abstract class CompatibilityWarning {
abstract val problemType: String
abstract val shortDescription: String
abstract val fullDescription: String
final override fun toString(): String = fullDescription
}