com.businessobjects.enterprise.crystalreport
Interface DefaultValues


public interface DefaultValues

A collection of the default values that may be chosen to be the current value for the parameter.


Nested Class Summary
static class DefaultValues.Factory
          A class with methods for creating instances of the DefaultValues type.
 
Field Summary
static org.apache.xmlbeans.SchemaType type
          Internal Use Only.
 
Method Summary
 PromptValue addNewDefaultValue()
          Appends and returns a new empty DefaultValue object as the last element of the array.
 PromptValue[] getDefaultValueArray()
          Returns the array of PromptValue objects.
 PromptValue getDefaultValueArray(int i)
          Returns the PromptValue object at the specified index position.
 PromptValue insertNewDefaultValue(int i)
          Inserts a new empty DefaultValue at a specified index.
 void removeDefaultValue(int i)
          Removes the DefaultValue element at the specified index position.
 void setDefaultValueArray(int i, PromptValue defaultValue)
          Sets the PromptValue object at the specified index position.
 void setDefaultValueArray(PromptValue[] defaultValueArray)
          Sets the array of PromptValue objects.
 int sizeOfDefaultValueArray()
          Returns the size of the DefaultValue element.
 

Field Detail

type

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

Method Detail

getDefaultValueArray

PromptValue[] getDefaultValueArray()

Returns the array of PromptValue objects.

Returns:
The array of PromptValue objects.

getDefaultValueArray

PromptValue getDefaultValueArray(int i)

Returns the PromptValue object at the specified index position.

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

sizeOfDefaultValueArray

int sizeOfDefaultValueArray()
Returns the size of the DefaultValue element.

Returns:
The size of DefaultValueArray.

setDefaultValueArray

void setDefaultValueArray(PromptValue[] defaultValueArray)

Sets the array of PromptValue objects.

Parameters:
defaultValueArray - The array of PromptValue objects.

setDefaultValueArray

void setDefaultValueArray(int i,
                          PromptValue defaultValue)

Sets the PromptValue object at the specified index position.

Parameters:
i - The index position.
defaultValue - The PromptValue object.

insertNewDefaultValue

PromptValue insertNewDefaultValue(int i)
Inserts a new empty DefaultValue at a specified index.

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

addNewDefaultValue

PromptValue addNewDefaultValue()
Appends and returns a new empty DefaultValue object as the last element of the array.

Returns:
A new PromptValue object.

removeDefaultValue

void removeDefaultValue(int i)
Removes the DefaultValue element at the specified index position.

Parameters:
i - The index position of the object to remove.