This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository topia-2.x. See http://git.nuiton.org/topia-2.x.git commit 9f33ee436b8a12d7539aee8d2d0ece31205d480f Author: Eric Chatellier <chatellier@codelutin.com> Date: Wed Mar 2 10:33:40 2016 +0100 FIx javadoc --- .../org/nuiton/topia/framework/EntityState.java | 34 +++++++--------------- .../topia/framework/TopiaConnectionProvider.java | 2 +- .../org/nuiton/topia/persistence/TopiaDAO.java | 2 +- 3 files changed, 13 insertions(+), 25 deletions(-) diff --git a/topia-persistence/src/main/java/org/nuiton/topia/framework/EntityState.java b/topia-persistence/src/main/java/org/nuiton/topia/framework/EntityState.java index 4946a50..18f44e7 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/framework/EntityState.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/framework/EntityState.java @@ -4,7 +4,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2004 - 2014 CodeLutin + * Copyright (C) 2004 - 2016 CodeLutin * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as @@ -22,18 +22,6 @@ * #L% */ -/* * - * EntityState.java - * - * Created: 22 nov. 06 12:10:57 - * - * @author poussin <poussin@codelutin.com> - * @version $Revision$ - * - * Last update: $Date$ - * by : $Author$ - */ - package org.nuiton.topia.framework; /** @@ -104,45 +92,45 @@ public class EntityState implements Comparable<EntityState>{ } /** - * Tells if the {@link #LOAD} state is on. + * Tells if the {@code #LOAD} state is on. * - * @return {@code true} if {@link #LOAD} state is on, {@code false} otherwise. + * @return {@code true} if {@code #LOAD} state is on, {@code false} otherwise. */ public boolean isLoad() { return (state & LOAD) == LOAD; } /** - * 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 #CREATE} state is on. + * Tells if the {@code #CREATE} state is on. * - * @return {@code true} if {@link #CREATE} state is on, {@code false} otherwise. + * @return {@code true} if {@code #CREATE} state is on, {@code false} otherwise. */ public boolean isCreate() { return (state & CREATE) == CREATE; } /** - * Tells if the {@link #UPDATE} state is on. + * Tells if the {@code #UPDATE} state is on. * - * @return {@code true} if {@link #UPDATE} state is on, {@code false} otherwise. + * @return {@code true} if {@code #UPDATE} state is on, {@code false} otherwise. */ public boolean isUpdate() { return (state & UPDATE) == UPDATE; } /** - * Tells if the {@link #DELETE} state is on. + * Tells if the {@code #DELETE} state is on. * - * @return {@code true} if {@link #DELETE} state is on, {@code false} otherwise. + * @return {@code true} if {@code #DELETE} state is on, {@code false} otherwise. */ public boolean isDelete() { return (state & DELETE) == DELETE; diff --git a/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java b/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java index af4e0ec..41196a3 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/framework/TopiaConnectionProvider.java @@ -86,7 +86,7 @@ public class TopiaConnectionProvider implements ConnectionProvider, Configurable /** * Sql isolation level to use in connection. * <p/> - * 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/TopiaDAO.java b/topia-persistence/src/main/java/org/nuiton/topia/persistence/TopiaDAO.java index afa342a..27c014e 100644 --- a/topia-persistence/src/main/java/org/nuiton/topia/persistence/TopiaDAO.java +++ b/topia-persistence/src/main/java/org/nuiton/topia/persistence/TopiaDAO.java @@ -591,7 +591,7 @@ public interface TopiaDAO<E extends TopiaEntity> extends TopiaDAODeprecated<E>, /** * Execute the count {@code hql} query and then synch the pager to this * result (says fill the - * {@link TopiaPagerBean#records} field and then adapt + * {@link TopiaPagerBean#getRecords()} field and then adapt * the number of pages available and the current number page). * * @param hql the count hql to execute -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.