mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-25 17:11:52 +07:00
12 lines
187 B
Plaintext
12 lines
187 B
Plaintext
public class Model {
|
|
public static final Runnable FOO = new Runnable() {
|
|
public void run() {
|
|
System.out.println("abc");
|
|
}
|
|
};
|
|
|
|
public void foo() {
|
|
FOO.run();
|
|
}
|
|
}
|