All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class sdoOracle.BoxList

java.lang.Object
   |
   +----sdoOracle.ObjectList
           |
           +----sdoOracle.BoxList

public class BoxList
extends ObjectList
Class BoxList defines a list of minimum bounding rectangles.

See Also:
Box

Constructor Index

 o BoxList()
Constructs an empty BoxList object.

Method Index

 o Add(Box)
Adds a new Box object to this list.
 o Clear()
Clears the list content.
 o First()
Returns the first Box object.
 o GetItem(int)
Returns the Box object related with input index.
 o Item()
Returns the current Box object.
 o Next()
Returns the next Box object.
 o Size()
Returns the actual number of Box objects.

Constructors

 o BoxList
 public BoxList()
Constructs an empty BoxList object.

Methods

 o Add
 public void Add(Box b)
Adds a new Box object to this list.

Parameters:
b - input Box to be added.
 o First
 public Box First()
Returns the first Box object.

Returns:
returns a Box object or null.
 o Next
 public Box Next()
Returns the next Box object.

Returns:
returns a Box object or null.
 o Clear
 public void Clear()
Clears the list content.

 o Item
 public Box Item()
Returns the current Box object.

Returns:
returns a Box object or null.
 o GetItem
 public Box GetItem(int index)
Returns the Box object related with input index.

Parameters:
index - position in the list (starts at 0).
Returns:
returns a Box object or null.
 o Size
 public int Size()
Returns the actual number of Box objects.

Returns:
returns an integer value.

All Packages  Class Hierarchy  This Package  Previous  Next  Index