mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
15 lines
283 B
Java
15 lines
283 B
Java
public class D {
|
|
public static final Runnable MY_RUNNABLE = new Runnable() {
|
|
public void run() {
|
|
System.out.println(A.MY_FIELD);
|
|
}
|
|
};
|
|
|
|
public void test() {
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println(A.MY_FIELD);
|
|
}
|
|
};
|
|
}
|
|
} |