com.businessobjects.enterprise.fullclient
Interface Values


public interface Values

A collection of prompt values.


Nested Class Summary
static class Values.Factory
          A class with methods for creating instances of the Values type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 org.apache.xmlbeans.XmlString addNewValue()
          Internal Use Only.
 void addValue(java.lang.String value)
          Adds a new universe ID to last element of the array.
 java.lang.String[] getValueArray()
          Returns the array of prompt values.
 java.lang.String getValueArray(int i)
          Returns the prompt value at the specified index position.
 org.apache.xmlbeans.XmlString insertNewValue(int i)
          Internal Use Only.
 void insertValue(int i, java.lang.String value)
          Inserts a new empty Value ID at a specified index.
 void removeValue(int i)
          Removes the value at the specified index position.
 void setValueArray(int i, java.lang.String value)
          Sets the prompt value at the specified index position.
 void setValueArray(java.lang.String[] valueArray)
          Sets the array of prompt values.
 int sizeOfValueArray()
          Returns the size of the ValueArray.
 org.apache.xmlbeans.XmlString[] xgetValueArray()
          Internal Use Only.
 org.apache.xmlbeans.XmlString xgetValueArray(int i)
          Internal Use Only.
 void xsetValueArray(int i, org.apache.xmlbeans.XmlString value)
          Internal Use Only.
 void xsetValueArray(org.apache.xmlbeans.XmlString[] valueArray)
          Internal Use Only.
 

Field Detail

type

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

Method Detail

getValueArray

java.lang.String[] getValueArray()

Returns the array of prompt values.

Returns:
The array of prompt values.

getValueArray

java.lang.String getValueArray(int i)

Returns the prompt value at the specified index position.

Parameters:
i - The index position.
Returns:
The prompt value.

xgetValueArray

org.apache.xmlbeans.XmlString[] xgetValueArray()
Internal Use Only.


xgetValueArray

org.apache.xmlbeans.XmlString xgetValueArray(int i)
Internal Use Only.


sizeOfValueArray

int sizeOfValueArray()
Returns the size of the ValueArray.

Returns:
The size of the array.

setValueArray

void setValueArray(java.lang.String[] valueArray)

Sets the array of prompt values.

Parameters:
value - The array of prompt values.

setValueArray

void setValueArray(int i,
                   java.lang.String value)

Sets the prompt value at the specified index position.

Parameters:
i - The index position.
value - The prompt value.

xsetValueArray

void xsetValueArray(org.apache.xmlbeans.XmlString[] valueArray)
Internal Use Only.


xsetValueArray

void xsetValueArray(int i,
                    org.apache.xmlbeans.XmlString value)
Internal Use Only.


insertValue

void insertValue(int i,
                 java.lang.String value)
Inserts a new empty Value ID at a specified index.

Parameters:
i - The index position to insert the object.
The - new Value ID.

addValue

void addValue(java.lang.String value)
Adds a new universe ID to last element of the array.


insertNewValue

org.apache.xmlbeans.XmlString insertNewValue(int i)
Internal Use Only.


addNewValue

org.apache.xmlbeans.XmlString addNewValue()
Internal Use Only.


removeValue

void removeValue(int i)
Removes the value at the specified index position.

Parameters:
i - The index position to remove the value ID.