]> source.dussan.org Git - vaadin-framework.git/commitdiff
Clarify HierarchicalQuery javadocs
authorAleksi Hietanen <aleksi@vaadin.com>
Wed, 10 May 2017 10:02:59 +0000 (13:02 +0300)
committerHenri Sara <henri.sara@gmail.com>
Tue, 16 May 2017 12:35:17 +0000 (15:35 +0300)
server/src/main/java/com/vaadin/data/provider/HierarchicalQuery.java

index 92cf15ade9fc42cbf0964d99ea4114893a85c6eb..cf6515b710ed46a76d22a1254baffd4e197a26a7 100644 (file)
@@ -41,7 +41,8 @@ public class HierarchicalQuery<T, F> extends Query<T, F> {
      * @param filter
      *            filtering for fetching; can be <code>null</code>
      * @param parent
-     *            the hierarchical parent object, can be <code>null</code>
+     *            the hierarchical parent object, <code>null</code>
+     *            corresponding to the root node
      */
     public HierarchicalQuery(F filter, T parent) {
         super(filter);
@@ -63,7 +64,8 @@ public class HierarchicalQuery<T, F> extends Query<T, F> {
      * @param filter
      *            filtering for fetching; can be <code>null</code>
      * @param parent
-     *            the hierarchical parent object, can be <code>null</code>
+     *            the hierarchical parent object, <code>null</code>
+     *            corresponding to the root node
      */
     public HierarchicalQuery(int offset, int limit,
             List<QuerySortOrder> sortOrders, Comparator<T> inMemorySorting,
@@ -73,9 +75,10 @@ public class HierarchicalQuery<T, F> extends Query<T, F> {
     }
 
     /**
-     * Get the hierarchical parent object, can be <code>null</code>.
+     * Get the hierarchical parent object, where <code>null</code> corresponds
+     * to the root node.
      *
-     * @return the hierarchical parent object, can be <code>null</code>
+     * @return the hierarchical parent object
      */
     public T getParent() {
         return parent;