mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
16 lines
339 B
Java
16 lines
339 B
Java
// "Create Method 'f'" "true"
|
|
class A {
|
|
{
|
|
new Runnable() {
|
|
public void run() {
|
|
B.f(this);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
class B {
|
|
public static void f(Runnable runnable) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.<caret></selection>
|
|
}
|
|
}
|