From 381c368b8907640bdd7cd81db2294724e082a119 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 4 Aug 2013 17:17:39 +0200 Subject: wip --- .../resources/io/trygvis/persistence/test/ChildEntity.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java (limited to 'container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java') 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 new file mode 100644 index 0000000..d886fca --- /dev/null +++ b/container-compiler-plugin/src/test/resources/io/trygvis/persistence/test/ChildEntity.java @@ -0,0 +1,13 @@ +package io.trygvis.persistence.test; + +import javax.persistence.Entity; + +@Entity +public class ChildEntity extends ParentEntity { + public final String name; + + public ChildEntity(Long id, String name) { + super(id); + this.name = name; + } +} -- cgit v1.2.3