com.jetbrains.plugin.structure.base.utils.Version.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-base Show documentation
Show all versions of structure-base Show documentation
Base library for parsing JetBrains plugins. Used by other JetBrains Plugins structure libraries.
package com.jetbrains.plugin.structure.base.utils
interface Version> : Comparable {
val productCode: String
get() = ""
fun asString(): String
fun asStringWithoutProductCode(): String
fun setProductCodeIfAbsent(productCode: String): V
}