Fix javadoc errors in entitystore-sql
Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/2b0a785f Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/2b0a785f Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/2b0a785f Branch: refs/heads/develop Commit: 2b0a785f985b9a7d701358c408feb37148d1c0e2 Parents: 8773a3f Author: Paul Merlin <[email protected]> Authored: Sat Oct 28 14:47:52 2017 +0200 Committer: Paul Merlin <[email protected]> Committed: Sat Oct 28 14:47:52 2017 +0200 ---------------------------------------------------------------------- .../polygene/entitystore/sql/EntitiesTable.java | 18 +++++++++--------- .../apache/polygene/entitystore/sql/SqlTable.java | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/2b0a785f/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/EntitiesTable.java ---------------------------------------------------------------------- diff --git a/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/EntitiesTable.java b/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/EntitiesTable.java index 943d274..ad38657 100644 --- a/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/EntitiesTable.java +++ b/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/EntitiesTable.java @@ -255,36 +255,36 @@ public class EntitiesTable * <p> * Example; If we have the following entity * </p> - * <code><pre> + * <pre><code> * public interface LegalEntity * { * Property<String> registration(); * } - * <p> + * * public interface Person extends LegalEntity * { * Property<String> name(); - * <p> + * * @Optional * Association<Person> spouse(); - * <p> + * * ManyAssocation<Person> children(); * } - * </pre></code> + * </code></pre> * <p> * and we do a simple; - * <code><pre> + * <pre><code> * Person p = uow.get( Person.class, "niclas" ); - * </pre></code> + * </code></pre> * <p> * then the generated query will be * </p> - * <code><pre> + * <pre><code> * SELECT * FROM ENTITIES * LEFT OUTER JOIN Person ON ENTITIES.value_id = Person.identity * LEFT OUTER JOIN LegalEntity ON ENTITIES.value_id = LegalEntity.identity * WHERE ENTITIES.identity = '123' - * </pre></code> + * </code></pre> * * @param entityDescriptor The descriptor of the entity type to be built. * @return The SELECT query that can be executed to retrieve the entity. http://git-wip-us.apache.org/repos/asf/polygene-java/blob/2b0a785f/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/SqlTable.java ---------------------------------------------------------------------- diff --git a/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/SqlTable.java b/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/SqlTable.java index 4590028..1ff1135 100644 --- a/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/SqlTable.java +++ b/extensions/entitystore-sql/src/main/java/org/apache/polygene/entitystore/sql/SqlTable.java @@ -67,10 +67,10 @@ import org.jooq.impl.DSL; * <h2>Mixin Tables</h2> * <p> * Each Mixin is stored in its own table. Only the following column is always present; + * </p> * <ul> * <li>identity - this is not entity identity but the UUID of the value_id in the Entities Table above.</li> * </ul> - * </p> * <p> * Each Property of the Mixin (as defined by QualifiedName of the Property, will reside in its own column. * All values in columns are (for now) serialized using a ValueSerialization service.
