commonMain.jetbrains.datalore.vis.svg.SvgAttributeSpec.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vis-svg-portable Show documentation
Show all versions of vis-svg-portable Show documentation
The Let-Plot Kotlin API depends on this artifact.
/*
* Copyright (c) 2019. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package jetbrains.datalore.vis.svg
class SvgAttributeSpec private constructor(val name: String, val namespaceUri: String?) {
companion object {
fun createSpec(name: String): SvgAttributeSpec {
return SvgAttributeSpec(name, null)
}
fun createSpecNS(name: String, prefix: String, namespaceUri: String): SvgAttributeSpec {
return SvgAttributeSpec("$prefix:$name", namespaceUri)
}
}
fun hasNamespace(): Boolean {
return namespaceUri != null
}
override fun toString(): String {
return name
}
// override fun equals(other: Any?): Boolean {
// if (this === other) return true
// if (other !is SvgAttributeSpec<*>) return false
//
// val that = other as SvgAttributeSpec<*>?
//
// return if (name != that!!.name) false else true
//
// }
override fun hashCode(): Int {
return name.hashCode()
}
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as SvgAttributeSpec<*>
if (name != other.name) return false
return true
}
}