diff -r 000000000000 -r 76005e62091d samples/customer.java.target --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/customer.java.target Mon Jul 11 23:15:28 2016 +0200 @@ -0,0 +1,27 @@ +package Bla; + +class Customer { + // attribute id + + public int getId() { + return id; + } + + public void setId(int value) { + id = value; + } + + private int id; + + // attribute name + + public String getName() { + return name; + } + + public void setName(String value) { + name = value; + } + + private String name; +}