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.
-
SchemaItemsCollection()
- Creates a SchemaItemsCollection instance.
-
addSchemaItemAfter(SchemaItem, SchemaItem)
- Adds a schema item to this collection immediately after the
specified item.
-
addSchemaItemBefore(SchemaItem, SchemaItem)
- Adds a schema item to this collection immediately before the
specified item.
-
addSchemaItemFirst(SchemaItem)
- Adds a schema item to the beginning of this collection.
-
addSchemaItemLast(SchemaItem)
- Adds a schema item to the end of this collection.
-
removeSchemaItem(SchemaItem)
- Removes a schema item from this collection.
SchemaItemsCollection
public SchemaItemsCollection()
- Creates a SchemaItemsCollection instance.
addSchemaItemFirst
public void addSchemaItemFirst(SchemaItem item)
- Adds a schema item to the beginning of this collection.
- Parameters:
- item - The schema item to add.
addSchemaItemLast
public void addSchemaItemLast(SchemaItem item)
- Adds a schema item to the end of this collection.
- Parameters:
- item - The schema item to add.
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.
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.
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