mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
12 lines
280 B
Java
12 lines
280 B
Java
// "Make 'a' implement 'java.lang.Runnable'" "true"
|
|
class a implements Runnable {
|
|
void f(Runnable r) {
|
|
f(this);
|
|
}
|
|
|
|
public void run() {
|
|
<caret><selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
|
}
|
|
}
|
|
|