mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
251 B
Java
16 lines
251 B
Java
class Mapping {
|
|
private int myInt;
|
|
private Mapping myField;
|
|
|
|
public void <caret>method() {
|
|
myInt = myField.hashCode();
|
|
}
|
|
|
|
public void context1() {
|
|
myInt = hashCode();
|
|
}
|
|
|
|
public void context2() {
|
|
myInt = this.hashCode();
|
|
}
|
|
} |