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