mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
243 B
Plaintext
17 lines
243 B
Plaintext
class Mapping {
|
|
private int myInt;
|
|
private Mapping myField;
|
|
|
|
public void method(Mapping m) {
|
|
myInt = m.hashCode();
|
|
}
|
|
|
|
public void context1() {
|
|
method(Mapping.this);
|
|
}
|
|
|
|
public void context2() {
|
|
method(this);
|
|
}
|
|
}
|