mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
24 lines
480 B
Java
24 lines
480 B
Java
// "Create field 'field'" "true-preview"
|
|
class A {
|
|
public static final String NOTIFICATION_ENABLED = "NOTIFICATION_ENABLED";
|
|
public static final String NOTIFICATION_DEVICE_NAME = "NOTIFICATION_DEVICE_NAME";
|
|
public static String field;
|
|
|
|
public static String getString(String key)
|
|
{
|
|
return getString(key, "");
|
|
}
|
|
|
|
public static String getString(String key, String defaultValue)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
class B {
|
|
{
|
|
String s = A.field;
|
|
}
|
|
}
|