* @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);
* @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,
}
/**
- * 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;