23 lines
423 B
Kotlin
Vendored
23 lines
423 B
Kotlin
Vendored
// FILE: State.java
|
|
|
|
package simulation
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface State {
|
|
@NotNull @NonNls
|
|
String name();
|
|
String @NotNull [] storages() default {};
|
|
}
|
|
|
|
// FILE: KotlinImporterComponent.kt
|
|
|
|
package simulation
|
|
|
|
// KotlinMavenImporter.kt:407:1
|
|
@State(
|
|
name = "AutoImportedSourceRoots"
|
|
)
|
|
class KotlinImporterComponent {
|
|
class State(var directories: List<String> = ArrayList())
|
|
}
|