All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.beans.tools.dataFormatWizard.SchemaItemsCollection

java.lang.Object
   |
   +----java.util.Vector
           |
           +----com.ibm.beans.tools.dataFormatWizard.SchemaItemsCollection

public class SchemaItemsCollection
extends Vector
The SchemaItemsCollection class is a subclass of the Vector class. It is used to maintain a list of SchemaItem objects.


Constructor Index

 o SchemaItemsCollection()
Creates a SchemaItemsCollection instance.

Method Index

 o addSchemaItemAfter(SchemaItem, SchemaItem)
Adds a schema item to this collection immediately after the specified item.
 o addSchemaItemBefore(SchemaItem, SchemaItem)
Adds a schema item to this collection immediately before the specified item.
 o addSchemaItemFirst(SchemaItem)
Adds a schema item to the beginning of this collection.
 o addSchemaItemLast(SchemaItem)
Adds a schema item to the end of this collection.
 o removeSchemaItem(SchemaItem)
Removes a schema item from this collection.

Constructors

 o SchemaItemsCollection
 public SchemaItemsCollection()
Creates a SchemaItemsCollection instance.

Methods

 o addSchemaItemFirst
 public void addSchemaItemFirst(SchemaItem item)
Adds a schema item to the beginning of this collection.

Parameters:
item - The schema item to add.
 o addSchemaItemLast
 public void addSchemaItemLast(SchemaItem item)
Adds a schema item to the end of this collection.

Parameters:
item - The schema item to add.
 o addSchemaItemBefore
 public void addSchemaItemBefore(SchemaItem item,
                                 SchemaItem beforeItem)
Adds a schema item to this collection immediately before the specified item.

Parameters:
item - The schema item to add.
beforeItem - Add the new item before this item.
 o addSchemaItemAfter
 public void addSchemaItemAfter(SchemaItem item,
                                SchemaItem afterItem)
Adds a schema item to this collection immediately after the specified item.

Parameters:
item - The schema item to add.
afterItem - Add the new item after this item.
 o removeSchemaItem
 public void removeSchemaItem(SchemaItem item)
Removes a schema item from this collection.

Parameters:
item - The schema item to remove.

All Packages  Class Hierarchy  This Package  Previous  Next  Index