public override java.util.List <Object> subList(int fromIndexInclusive, int toIndexExclusive)
 {
     return(UnmodifiableList.decorate(base.subList(fromIndexInclusive, toIndexExclusive)));
 }
Example #2
0
 /**
  * Get the list of Iterators (unmodifiable)
  *
  * @return the unmodifiable list of iterators added
  */
 public java.util.List <Object> getIterators()
 {
     return(UnmodifiableList.decorate(iteratorChain));
 }
 /**
  * Gets a view over the keys in the map as a List.
  * <p>
  * The List will be ordered by object insertion into the map.
  * The List is unmodifiable.
  *
  * @see #keySet()
  * @return the unmodifiable list view over the keys
  * @since Commons Collections 3.2
  */
 public virtual java.util.List <Object> keyList()
 {
     return(UnmodifiableList.decorate(insertOrder));
 }
 /**
  * Gets the list of Iterators (unmodifiable).
  *
  * @return the unmodifiable list of iterators added
  */
 public virtual java.util.List <Object> getIterators()
 {
     return(UnmodifiableList.decorate(iterators));
 }