Lines Matching refs:instanceVariable
4 package instancevariable;
6 class InstanceVariable {
9 public InstanceVariable parent;
13 private InstanceVariable privateParent;
15 public InstanceVariable() {}
17 public InstanceVariable(int bar) {
21 parent = new InstanceVariable();
22 privateParent = new InstanceVariable();
30 InstanceVariable instanceVariable = new InstanceVariable(17);
31 System.out.println(instanceVariable.sumAll() + "=144");