mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
16 lines
439 B
Java
16 lines
439 B
Java
// "Create Method 'someMethod'" "true"
|
|
public class Test {
|
|
|
|
public Object get() {
|
|
return new Object() {
|
|
public boolean equals(Object obj) {
|
|
return someMethod(this);
|
|
}
|
|
|
|
private boolean someMethod(Object o) {
|
|
<caret><selection>return false; //To change body of created methods use File | Settings | File Templates.</selection>
|
|
}
|
|
};
|
|
}
|
|
}
|