summaryrefslogtreecommitdiffstats
path: root/bcel-builder/testdata/SimpleType.java
blob: 048a53563b29746902f99f00df0f598527a83e67 (plain)
1
2
3
4
5
6
class SimpleType {
  public  Integer i;

  public void setI(Integer i) { this.i=i;}
  public Integer getI() { return i;}
}