From: <fg...@us...> - 2009-02-28 20:37:00
|
Revision: 1066 http://openutils.svn.sourceforge.net/openutils/?rev=1066&view=rev Author: fgrilli Date: 2009-02-28 20:36:57 +0000 (Sat, 28 Feb 2009) Log Message: ----------- improved javadoc Modified Paths: -------------- trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/JCRCriteriaFactory.java Modified: trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/JCRCriteriaFactory.java =================================================================== --- trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/JCRCriteriaFactory.java 2009-02-28 20:23:13 UTC (rev 1065) +++ trunk/openutils-mgnlcriteria/src/main/java/net/sourceforge/openutils/mgnlcriteria/jcr/query/JCRCriteriaFactory.java 2009-02-28 20:36:57 UTC (rev 1066) @@ -53,10 +53,11 @@ * must support this feature (Jackrabbit 1.4+ does).<br> * To set the maximum number of returned items you must call {@link Criteria#setMaxResults(int)} (by default * {@link Criteria#setFirstResult(int)} is set to 0).<br> - * Please notice that if these methods are not explicitly called before the {@link Criteria#list()} method, the - * latter will return the entire resultset as in + * Please notice that if {@link Criteria#setMaxResults(int)} is not explicitly called before the + * {@link Criteria#list()} method, the latter will return the entire resultset as in * {@link JCRCriteriaFactory#createMgnlCriteria(String, info.magnolia.cms.core.search.QueryManager, String)} - * @param path String - the path in JCR repository to search for Nodes. This is the path which precedes the predicate + * @param path String - the path in JCR repository to search for Nodes. This is the path which precedes the + * predicate * @param queryManager - an instance of info.magnolia.cms.core.search.QueryManager * @param itemType String - if not specified defaults to "mgnl:content" * @return an instance of a concrete subclass of {@link AbstractMagnoliaCriteriaImpl} @@ -74,10 +75,11 @@ * must support this feature (Jackrabbit 1.4+ does).<br> * To set the maximum number of returned items you must call {@link Criteria#setMaxResults(int)} (by default * {@link Criteria#setFirstResult(int)} is set to 0).<br> - * Please notice that if these methods are not explicitly called before the {@link Criteria#list()} method, the - * latter will return the entire resultset as in + * Please notice that if {@link Criteria#setMaxResults(int)} is not explicitly called before the + * {@link Criteria#list()} method, the latter will return the entire resultset as in * {@link JCRCriteriaFactory#createMgnlCriteria(String, info.magnolia.cms.core.search.QueryManager, String, Class)} - * @param path String - the path in JCR repository to search for Nodes. This is the path which precedes the predicate + * @param path String - the path in JCR repository to search for Nodes. This is the path which precedes the + * predicate * @param queryManager - an instance of info.magnolia.cms.core.search.QueryManager * @param itemType String - if not specified defaults to "mgnl:content" * @param classType Class<?> - the list method of this implementation must return instances of this type This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |