mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 11:20:55 +07:00
15 lines
265 B
Java
15 lines
265 B
Java
// "Create Method 'f'" "true"
|
|
class A {
|
|
{
|
|
f(A::foo);
|
|
}
|
|
|
|
private void f(Object p0) {
|
|
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
|
|
static int foo() {
|
|
return 42;
|
|
}
|
|
}
|