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.

SimpleType.java 123B

123456
  1. class SimpleType {
  2. public Integer i;
  3. public void setI(Integer i) { this.i=i;}
  4. public Integer getI() { return i;}
  5. }