mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
201 B
Kotlin
9 lines
201 B
Kotlin
package test
|
|
|
|
public trait JavaBeanAbstractGetter : java.lang.Object {
|
|
//final val red: Int
|
|
public abstract fun getRed(): Int
|
|
//final val blue: Int
|
|
public abstract fun getBlue(): Int
|
|
}
|