summaryrefslogtreecommitdiff
path: root/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java
diff options
context:
space:
mode:
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;
+ }
}