aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/testdata/SimpleType.java
blob: 2b0563bba98acfb874f5bc3dfa8944e7ec27719f (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;}
}