All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.phloc.commons.parent.IChildrenProviderSorted Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version
/**
 * Copyright (C) 2006-2014 phloc systems
 * http://www.phloc.com
 * office[at]phloc[dot]com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.phloc.commons.parent;

import java.util.List;

import javax.annotation.Nonnegative;
import javax.annotation.Nullable;

/**
 * This interface can be used to generically resolved children of a certain
 * object in a sorted way.
 * 
 * @author Philip Helger
 * @param 
 *        The type of the children to retrieve.
 */
public interface IChildrenProviderSorted  extends IChildrenProvider 
{
  /**
   * Get the children of the passed object.
   * 
   * @param aCurrent
   *        The object to determine the children of. May be null
   *        depending on the concrete implementation.
   * @return The child objects, or null if there are no children.
   *         If null is passed, the resolver is expected to return
   *         any possible top level (root) elements. This method may NOT return
   *         null if the call to {@link #hasChildren(Object)} with
   *         the same object returned true.
   */
  @Nullable
  List  getChildren (@Nullable CHILDTYPE aCurrent);

  /**
   * Get the child of the passed object at the given index. It is assumed that
   * objects are accessed in exactly the same order as they are delivered by
   * {@link #getChildren(Object)}.
   * 
   * @param aCurrent
   *        The object to get the child of. May be null depending
   *        on the concrete implementation.
   * @param nIndex
   *        The index to retrieve the child at.
   * @return The child at the specified index. May not be < 0.
   * @throws IndexOutOfBoundsException
   *         in case the specified index is invalid.
   */
  @Nullable
  CHILDTYPE getChildAtIndex (@Nullable CHILDTYPE aCurrent, @Nonnegative int nIndex);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy