Skip to content

Commit

Permalink
Extend test #68
Browse files Browse the repository at this point in the history
  • Loading branch information
timowest committed Nov 14, 2013
1 parent 646e5f8 commit 8f3d920
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions scalagen/src/test/scala/com/mysema/examples/Bean4.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,21 @@ public T1 getProp() {
return prop;
}
}

public static class D {
private T1 prop;

D(T1 prop) {
this.prop = prop;
}

public void setProp(T1 prop) {
this.prop = prop;
}

public T1 getProp() {
return prop;
}
}

}

0 comments on commit 8f3d920

Please sign in to comment.