You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Target5.java 148B

1234567
  1. package testproxy;
  2. public class Target5 {
  3. private int value;
  4. public Target5(int i) { value = i; }
  5. public int get() { return value; }
  6. }