1 package testproxy; 2 3 import java.io.IOException; 4 5 @SuppressWarnings("unused") 6 public class Target2 { 7 private int value; Target2(int i)8 public Target2(int i) { value = 1; } Target2(int i, int j)9 protected Target2(int i, int j) { value = 2; } Target2(int i, double j)10 private Target2(int i, double j) { value = 3; } Target2(int i, long k)11 Target2(int i, long k) { value = 4; } 12 get()13 public int get() { return value; } foo()14 public int foo() throws IOException { return ++value; } _dfoo()15 public int _dfoo() { value += 2; return value; } _d100()16 private int _d100() { value += 3; return value; } _d1003foo()17 private int _d1003foo() { value += 3; return value; } 18 } 19