mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
215 B
Java
16 lines
215 B
Java
class Mapping {
|
|
private int myInt;
|
|
|
|
public void <caret>method(int p) {
|
|
myInt = p + 1;
|
|
}
|
|
|
|
public void context1() {
|
|
myInt = myInt + 1;
|
|
}
|
|
|
|
public void context2() {
|
|
myInt = this.myInt + 1;
|
|
}
|
|
}
|