mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
12 lines
245 B
Java
12 lines
245 B
Java
// "Create Method 'someMethod'" "true"
|
|
public class Test {
|
|
|
|
public Object get() {
|
|
return new Object() {
|
|
public boolean equals(Object obj) {
|
|
return <caret>someMethod(this);
|
|
}
|
|
};
|
|
}
|
|
}
|