This commit is contained in:
Dmitry Jemerov
2009-09-10 20:43:40 +04:00
parent e9214df509
commit f9dbab8f6d
149 changed files with 7 additions and 0 deletions
@@ -0,0 +1,33 @@
class LocationQuantity {
public final int myInt = 3;
public int method(int p) {
return myInt + p;
}
public void sameClassContext() {
int v = 1;
v++;
int v2 = method(v);
Object o = new Object() {
public void anonymousClassContext() {
int av = method(2);
}
};
}
public class Inner {
private boolean myFlag;
public int innerClassContext(int ip) {
return myFlag ? method(ip) : 0;
}
}
}
class DifferentClass {
private int myInt;
private void differentClassContext() {
LocationQuantity lq = new LocationQuantity();
int v = lq.method(myInt);
}
}