This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository topia. See http://git.nuiton.org/topia.git commit 62b950181d62e990c31f2e5c3b32ac234fc166d9 Author: Eric Chatellier <chatellier@codelutin.com> Date: Fri Mar 11 12:04:13 2016 +0100 Fix javadoc --- .../topia/persistence/event/EntityState.java | 24 +++++++++++----------- .../internal/TopiaConnectionProvider.java | 2 +- .../persistence/legacy/EntityListUpdator.java | 2 +- .../topia/persistence/legacy/ListUpdator.java | 2 +- .../nuiton/topia/persistence/legacy/Loador.java | 2 +- .../persistence/util/EntityOperatorStore.java | 2 +- .../topia/service/csv/in/AbstractImportModel.java | 2 +- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/event/EntityState.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/event/EntityState.java index ce00e4a..f445e1d 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/event/EntityState.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/event/EntityState.java @@ -106,54 +106,54 @@ public class EntityState implements Comparable<EntityState> { } /** - * Tells if the {@link #LOADED} state is on. + * Tells if the {@code #LOADED} state is on. * - * @return {@code true} if {@link #LOADED} state is on, {@code false} otherwise. + * @return {@code true} if {@code #LOADED} state is on, {@code false} otherwise. */ public boolean isLoaded() { return (state & LOADED) == LOADED; } /** - * Tells if the {@link #READ} state is on. + * Tells if the {@code #READ} state is on. * - * @return {@code true} if {@link #READ} state is on, {@code false} otherwise. + * @return {@code true} if {@code #READ} state is on, {@code false} otherwise. */ public boolean isRead() { return (state & READ) == READ; } /** - * Tells if the {@link #CREATED} state is on. + * Tells if the {@code #CREATED} state is on. * - * @return {@code true} if {@link #CREATED} state is on, {@code false} otherwise. + * @return {@code true} if {@code #CREATED} state is on, {@code false} otherwise. */ public boolean isCreated() { return (state & CREATED) == CREATED; } /** - * Tells if the {@link #WRITTEN} state is on. + * Tells if the {@code #WRITTEN} state is on. * - * @return {@code true} if {@link #WRITTEN} state is on, {@code false} otherwise. + * @return {@code true} if {@code #WRITTEN} state is on, {@code false} otherwise. */ public boolean isWritten() { return (state & WRITTEN) == WRITTEN; } /** - * Tells if the {@link #UPDATED} state is on. + * Tells if the {@code #UPDATED} state is on. * - * @return {@code true} if {@link #UPDATED} state is on, {@code false} otherwise. + * @return {@code true} if {@code #UPDATED} state is on, {@code false} otherwise. */ public boolean isUpdated() { return (state & UPDATED) == UPDATED; } /** - * Tells if the {@link #DELETED} state is on. + * Tells if the {@code #DELETED} state is on. * - * @return {@code true} if {@link #DELETED} state is on, {@code false} otherwise. + * @return {@code true} if {@code #DELETED} state is on, {@code false} otherwise. */ public boolean isDeleted() { return (state & DELETED) == DELETED; diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/TopiaConnectionProvider.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/TopiaConnectionProvider.java index e19b8f3..7a29d09 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/TopiaConnectionProvider.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/internal/TopiaConnectionProvider.java @@ -86,7 +86,7 @@ public class TopiaConnectionProvider implements ConnectionProvider, Configurable /** * Sql isolation level to use in connection. * - * Can be configured by hibernate property {@link Environment#ISOLATION_LEVELS}. + * Can be configured by hibernate property {@link Environment#ISOLATION}. * * @see Connection#getTransactionIsolation() */ diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/EntityListUpdator.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/EntityListUpdator.java index a316028..b55bd50 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/EntityListUpdator.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/EntityListUpdator.java @@ -42,7 +42,7 @@ import java.util.Collection; * * @author Tony Chemit - chemit@codelutin.com * @param <P> type of parent of childs - * @param <E>type of child + * @param <E> type of child */ public class EntityListUpdator<P extends TopiaEntity, E extends TopiaEntity> implements ListUpdator<P, E> { diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/ListUpdator.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/ListUpdator.java index 6e4047a..24bc1a7 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/ListUpdator.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/ListUpdator.java @@ -36,7 +36,7 @@ import java.util.Collection; * * @author Tony Chemit - chemit@codelutin.com * @param <P> the type of the entity which contains the collection to update. - * @param <E>the type of entities in the collection. + * @param <E> the type of entities in the collection. */ public interface ListUpdator<P, E> { diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/Loador.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/Loador.java index 378b67c..49a7d77 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/Loador.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/legacy/Loador.java @@ -31,7 +31,7 @@ import java.util.Map; * A simple contract to load an object from another one. * * @author Tony Chemit - chemit@codelutin.com - * @param <E>type of bean to load + * @param <E> type of bean to load */ public interface Loador<E> extends Serializable { diff --git a/topia-persistence/src/main/java/org/nuiton/topia/persistence/util/EntityOperatorStore.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/util/EntityOperatorStore.java index 7d72350..1d45c4f 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/util/EntityOperatorStore.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/util/EntityOperatorStore.java @@ -48,7 +48,7 @@ public class EntityOperatorStore { /** * - * @param <E>le type de l'entite + * @param <E> le type de l'entite * @param contract le contrat de l'entite * @return l'operator associe au contrat * @see EntityOperator diff --git a/topia-service-csv/src/main/java/org/nuiton/topia/service/csv/in/AbstractImportModel.java b/topia-service-csv/src/main/java/org/nuiton/topia/service/csv/in/AbstractImportModel.java index 1a2246b..0b35e11 100644 --- a/topia-service-csv/src/main/java/org/nuiton/topia/service/csv/in/AbstractImportModel.java +++ b/topia-service-csv/src/main/java/org/nuiton/topia/service/csv/in/AbstractImportModel.java @@ -33,7 +33,7 @@ import java.util.Map; /** * Abstract import model which add the useful methdo about importing foreign keys. * - * @param <E>type of entity to import + * @param <E> type of entity to import * @author Tony Chemit - chemit@codelutin.com * @since 2.6.12 */ -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.