com.businessobjects.enterprise.overload
Interface ObjectsOverload


public interface ObjectsOverload

A collection of universe objects that are restricted from the given universe.


Nested Class Summary
static class ObjectsOverload.Factory
          A class with methods for creating instances of the ObjectsOverload type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 ObjectOverload addNewObject()
          Appends and returns a new empty ObjectOverload object as the last element of the array.
 ObjectOverload[] getObjectArray()
          Returns the array of ObjectOverload objects.
 ObjectOverload getObjectArray(int i)
          Returns the ObjectOverload object at the specified index position.
 ObjectOverload insertNewObject(int i)
          Inserts and returns a new empty ObjectOverload object at a specified index.
 void removeObject(int i)
          Removes the ith ObjectOverload object.
 void setObjectArray(int i, ObjectOverload object)
          Sets the ObjectOverload object at the specified index position.
 void setObjectArray(ObjectOverload[] objectArray)
          Sets the array of ObjectOverload objects.
 int sizeOfObjectArray()
          Returns the number of ObjectOverload objects in the array.
 

Field Detail

type

static final org.apache.xmlbeans.SchemaType type
Internal Use Only.

Method Detail

getObjectArray

ObjectOverload[] getObjectArray()

Returns the array of ObjectOverload objects.

Returns:
The array of ObjectOverload objects.

getObjectArray

ObjectOverload getObjectArray(int i)

Returns the ObjectOverload object at the specified index position.

Parameters:
i - The index position.
Returns:
The ObjectOverload object.

sizeOfObjectArray

int sizeOfObjectArray()
Returns the number of ObjectOverload objects in the array.

Returns:
The size of the ObjectOverload array.

setObjectArray

void setObjectArray(ObjectOverload[] objectArray)

Sets the array of ObjectOverload objects.

Parameters:
objectArray - The array of ObjectOverload objects.

setObjectArray

void setObjectArray(int i,
                    ObjectOverload object)

Sets the ObjectOverload object at the specified index position.

Parameters:
i - The index position.
object - The ObjectOverload object.

insertNewObject

ObjectOverload insertNewObject(int i)
Inserts and returns a new empty ObjectOverload object at a specified index.

Parameters:
i - The index position to insert the object.
Returns:
The new ObjectOverload object.

addNewObject

ObjectOverload addNewObject()
Appends and returns a new empty ObjectOverload object as the last element of the array.

Returns:
A new ObjectOverload object.

removeObject

void removeObject(int i)
Removes the ith ObjectOverload object.

Parameters:
i - The index position for the object to be removed.