mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: 3161c7ef9f98e0c7d32e147f8b5ca0bf0caeec8c
9 lines
244 B
Java
9 lines
244 B
Java
import com.intellij.openapi.components.State;
|
|
|
|
@State(name = "MyStateName")
|
|
public class ExportableIdImplicitUsage {
|
|
|
|
@State(name = "MyPresentableName", presentableName = Void.class)
|
|
public static class ExportableWithPresentableName {
|
|
}
|
|
} |