com.jrefinery.report.util
Class LevelList

java.lang.Object
  |
  +--com.jrefinery.report.util.LevelList
All Implemented Interfaces:
java.lang.Cloneable

public class LevelList
extends java.lang.Object
implements java.lang.Cloneable

A list that associates a level (instance of Integer) with each element in the list.

Author:
Thomas Morgner

Constructor Summary
LevelList()
          Creates a new list (initially empty).
 
Method Summary
 void add(java.lang.Object o)
          Adds an element at level zero.
 void add(java.lang.Object o, int level)
          Adds an element at a given level.
 void clear()
          Clears the list.
 java.lang.Object clone()
          Clones the list.
 java.lang.Object get(int index)
          Returns the element with the given index.
 java.util.Iterator getElementsForLevel(int level)
          Returns an iterator for all the elements at a given level.
 int getLevel(int index)
          Returns the level for an element.
 int getLevel(java.lang.Object o)
          Returns the level of an element.
 java.util.Iterator getLevelsAscending()
          Returns an iterator that iterates through the levels in ascending order.
 java.util.Iterator getLevelsDescending()
          Returns an iterator that iterates through the levels in descending order.
 int indexOf(java.lang.Object o)
          Returns the index of an element.
 void setLevel(int index, int level)
          Sets the level for an element.
 void setLevel(java.lang.Object o, int level)
          Sets the level of an element.
 int size()
          Returns the number of elements in the list.
 java.lang.Object[] toArray()
          Returns the elements as an array.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LevelList

public LevelList()
Creates a new list (initially empty).

Method Detail

size

public int size()
Returns the number of elements in the list.

Returns:
the element count.

getLevelsAscending

public java.util.Iterator getLevelsAscending()
Returns an iterator that iterates through the levels in ascending order.

Returns:
an iterator.

getLevelsDescending

public java.util.Iterator getLevelsDescending()
Returns an iterator that iterates through the levels in descending order.

Returns:
an iterator.

toArray

public java.lang.Object[] toArray()
Returns the elements as an array.

Returns:
the array.

getElementsForLevel

public java.util.Iterator getElementsForLevel(int level)
Returns an iterator for all the elements at a given level.

Parameters:
level - the level.
Returns:
the iterator.

get

public java.lang.Object get(int index)
Returns the element with the given index.

Parameters:
index - the index.
Returns:
the element.

add

public void add(java.lang.Object o)
Adds an element at level zero.

Parameters:
o - the element.

add

public void add(java.lang.Object o,
                int level)
Adds an element at a given level.

Parameters:
o - the element.
level - the level.

setLevel

public void setLevel(int index,
                     int level)
Sets the level for an element.

Parameters:
index - the element index.
level - the level.

getLevel

public int getLevel(int index)
Returns the level for an element.

Parameters:
index - the element index.
Returns:
the level.

indexOf

public int indexOf(java.lang.Object o)
Returns the index of an element.

Parameters:
o - the element.
Returns:
the index.

getLevel

public int getLevel(java.lang.Object o)
Returns the level of an element.

Parameters:
o - the element.
Returns:
the level.

setLevel

public void setLevel(java.lang.Object o,
                     int level)
Sets the level of an element.

Parameters:
o - the element.
level - the level.

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Clones the list.

Overrides:
clone in class java.lang.Object
Returns:
the clone.
Throws:
java.lang.CloneNotSupportedException - should never happen.

clear

public void clear()
Clears the list.