summaryrefslogtreecommitdiff
path: root/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-08-04 18:50:18 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2013-08-04 18:50:18 +0200
commit6d4c6960e69b53c124bd84beb3d008bd5a4bb319 (patch)
tree1bd812b044d35b629ac2b49f4910b28cfdc29a12 /container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java
parent381c368b8907640bdd7cd81db2294724e082a119 (diff)
downloadcontainer-playground-6d4c6960e69b53c124bd84beb3d008bd5a4bb319.tar.gz
container-playground-6d4c6960e69b53c124bd84beb3d008bd5a4bb319.tar.bz2
container-playground-6d4c6960e69b53c124bd84beb3d008bd5a4bb319.tar.xz
container-playground-6d4c6960e69b53c124bd84beb3d008bd5a4bb319.zip
wip
o Adding Joda time's DateTime and UUID. o Registering @SequenceGenerator's on fields and getters. o Skipping static methods. o Generating SQL to drop sequences.
Diffstat (limited to 'container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java')
-rw-r--r--container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java b/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java
index d886fca..a341fd2 100644
--- a/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java
+++ b/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java
@@ -10,4 +10,22 @@ public class ChildEntity extends ParentEntity {
super(id);
this.name = name;
}
+
+ // -----------------------------------------------------------------------
+ // These static versions shouldn't affect anything
+ // -----------------------------------------------------------------------
+
+ public static void setSetterOnly(int x) {
+ }
+
+ public static int getAccessorPair() {
+ return 0;
+ }
+
+ public static void setAccessorPair(int x) {
+ }
+
+ public static int getGetterOnly() {
+ return 0;
+ }
}