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
-
BoxList()
- Constructs an empty BoxList object.
-
Add(Box)
- Adds a new Box object to this list.
-
Clear()
- Clears the list content.
-
First()
- Returns the first Box object.
-
GetItem(int)
- Returns the Box object related with input index.
-
Item()
- Returns the current Box object.
-
Next()
- Returns the next Box object.
-
Size()
- Returns the actual number of Box objects.
BoxList
public BoxList()
- Constructs an empty BoxList object.
Add
public void Add(Box b)
- Adds a new Box object to this list.
- Parameters:
- b - input Box to be added.
First
public Box First()
- Returns the first Box object.
- Returns:
- returns a Box object or null.
Next
public Box Next()
- Returns the next Box object.
- Returns:
- returns a Box object or null.
Clear
public void Clear()
- Clears the list content.
Item
public Box Item()
- Returns the current Box object.
- Returns:
- returns a Box object or null.
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.
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