samples/customer.java.target
changeset 0 76005e62091d
--- /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;
+}