mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
282 B
Java
16 lines
282 B
Java
public class Model {
|
|
public static final Runnable FO<caret>O = new Runnable() {
|
|
public void run() {
|
|
System.out.println("abc");
|
|
}
|
|
};
|
|
|
|
public void foo() {
|
|
new Runnable() {
|
|
public void run() {
|
|
System.out.println("abc");
|
|
}
|
|
}.run();
|
|
}
|
|
}
|