Removed DOCUMENT ME comments that were generated and applied source code
[utils] / test / enterprise / src / test / java / org / wamblee / support / persistence / MyEntity.java
index c2b4728827caf70e3535dc2e25889f69b2b7d193..e3580c0625814d21df1e4751488890a6b947a32a 100644 (file)
@@ -10,30 +10,28 @@ import javax.persistence.Table;
 @Table(name = "XYZ_MYENTITY")
 public class MyEntity {
 
-       @Id
-       @GeneratedValue(strategy = GenerationType.AUTO)
-       private Long id; 
-       
-       private String sleuteltje; 
-       private String value; 
-       
-       
-       public MyEntity() { 
-          // Empty     
-       }
-       
-       public MyEntity(String aKey, String aValue) { 
-               sleuteltje = aKey; 
-               value = aValue; 
-       }
-       
-       public String getKey() {
-               return sleuteltje;
-       }
-       
-       public String getValue() {
-               return value;
-       }
-
-       
+    @Id
+    @GeneratedValue(strategy = GenerationType.AUTO)
+    private Long id;
+
+    private String sleuteltje;
+    private String value;
+
+    public MyEntity() {
+        // Empty
+    }
+
+    public MyEntity(String aKey, String aValue) {
+        sleuteltje = aKey;
+        value = aValue;
+    }
+
+    public String getKey() {
+        return sleuteltje;
+    }
+
+    public String getValue() {
+        return value;
+    }
+
 }