From: <fg...@us...> - 2009-08-12 14:27:15
|
Revision: 1255 http://openutils.svn.sourceforge.net/openutils/?rev=1255&view=rev Author: fgrilli Date: 2009-08-12 14:26:58 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fixed typo in javadoc whish -> wish Modified Paths: -------------- trunk/openutils-bshd5/src/main/java/it/openutils/dao/hibernate/HibernateDAO.java Modified: trunk/openutils-bshd5/src/main/java/it/openutils/dao/hibernate/HibernateDAO.java =================================================================== --- trunk/openutils-bshd5/src/main/java/it/openutils/dao/hibernate/HibernateDAO.java 2009-08-12 10:15:48 UTC (rev 1254) +++ trunk/openutils-bshd5/src/main/java/it/openutils/dao/hibernate/HibernateDAO.java 2009-08-12 14:26:58 UTC (rev 1255) @@ -100,7 +100,7 @@ /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param maxResults maximum number of results * @param page result page (first result is maxResults * page) * @return list of objects @@ -109,7 +109,7 @@ /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param metadata filter metadata * @param maxResults maximum number of results * @param page result page (first result is maxResults * page) @@ -119,7 +119,7 @@ /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param customOrder order criterias * @param metadata filter metadata * @param maxResults maximum number of results @@ -131,7 +131,7 @@ /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param customOrder order criterias * @param metadata filter metadata * @param maxResults maximum number of results @@ -145,7 +145,7 @@ /** * Return properties from all objects related to the implementation of this DAO filtered using properties of the * provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param customOrder order criterias * @param metadata filter metadata * @param maxResults maximum number of results @@ -160,14 +160,14 @@ /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @return list of objects */ List<T> findFiltered(final T filter); /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param orderProperties the name of the property used for ordering * @return list of objects */ @@ -175,7 +175,7 @@ /** * Return all objects related to the implementation of this DAO filtered using properties of the provided instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param metadata filter metadata * @return list of objects */ @@ -184,7 +184,7 @@ /** * Return the first object related to the implementation of this DAO filtered using properties of the provided * instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @return first object in the collection */ T findFilteredFirst(final T filter); @@ -192,7 +192,7 @@ /** * Return the first object related to the implementation of this DAO filtered using properties of the provided * instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @return first object in the collection */ T findFilteredFirst(final T filter, final Order[] order); @@ -200,14 +200,14 @@ /** * Return the first object related to the implementation of this DAO filtered using properties of the provided * instance. - * @param filter an instance of the object with the properties you whish to filter on. + * @param filter an instance of the object with the properties you wish to filter on. * @param criteria additional criterion * @return first object in the collection */ T findFilteredFirst(final T filter, final List<Criterion> criteria); /** - * Used by the base DAO classes but here for your modification Remove a persistent instance from the datastore. The + * Used by the base DAO classes but here for your modification. Remove a persistent instance from the datastore. The * argument may be an instance associated with the receiving Session or a transient instance with an identifier * associated with existing persistent state. * @param key key This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |