mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
This is required also for retrieving attribute names from extension beans (^ KTIJ-26693). This commit enables devkit tests against K2. GitOrigin-RevId: e4ee8095df3294df79eaaa3eec8ae43f823fe5b4
9 lines
148 B
Kotlin
9 lines
148 B
Kotlin
package p
|
|
|
|
import com.intellij.util.xmlb.annotations.Attribute
|
|
|
|
class MyBean {
|
|
@Attribute("default")
|
|
@JvmField
|
|
var defaultValue: String = ""
|
|
} |