|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface PromptInfo
The PromptInfo interface is used to resolve the prompting that appears during query refresh.
Depending on the properties of the prompt, values can be entered
from the List Of Values, manually, or both.
Prompts can have more than one value.
Prompts must be filled each time a document is refreshed.
Example: Retrieve the list of prompts used by the document.
RetrieveMustFillInfo fillInfo = RetrieveMustFillInfo.Factory.newInstance();
RetrievePromptsInfo promptInfo = RetrievePromptsInfo.Factory.newInstance();
fillInfo.setRetrievePromptsInfo(promptInfo);
Action[] actions = new Action[1];
// Add a Refresh action to the Action array.
actions[0] = Refresh.Factory.newInstance();
// Obtain a DocumentInformation object from the ReportEngine.
DocumentInformation boDocInfo = boRepEng.getDocumentInformation(strDocid,fillInfo,actions,null,null);
if (boDocInfo.getMustFillPrompts())
{
PromptInfo[] boPromptInfo = boDocInfo.getPromptInfoArray();
}
RetrieveView,
RetrieveData,
PromptInfo,
Action,
FillPrompts,
FillPrompt,
PromptValue,
RangePromptValue,
ReportEngine,
DocumentInformation| Nested Class Summary | |
|---|---|
static class |
PromptInfo.Factory
A class with methods for creating instances of the PromptInfo type. |
| Field Summary | |
|---|---|
static org.apache.xmlbeans.SchemaType |
type
Internal Use Only. |
| Method Summary | |
|---|---|
void |
addDataProviderIDs(java.lang.String dataProviderIDs)
Internal Use Only. |
org.apache.xmlbeans.XmlString |
addNewDataProviderIDs()
Internal Use Only. |
PromptValue |
addNewDefaultValues()
Internal Use Only. |
LOV |
addNewLOV()
Internal Use Only. |
PromptValue |
addNewMaxValue()
Appends and returns a new empty MaxValue element |
PromptValue |
addNewMinValue()
Appends and returns a new empty MinValue element. |
PromptValue |
addNewPreviousValues()
Internal Use Only. |
PromptInfo |
addNewPromptToBeFilled()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
addNewPromptValueFormat()
Internal Use Only. |
void |
addPromptValueFormat(java.lang.String promptValueFormat)
Internal Use Only. |
boolean |
getAllowDiscreteValue()
Returns true, if this prompt is allowed to take one or more DiscretePromptValue objects. |
boolean |
getAllowMultiValues()
Returns true, if this prompt is allowed multiple values. |
boolean |
getAllowNonLeafValues()
Returns true if the value is at root level, otherwise false. |
boolean |
getAllowRangeValue()
Returns true, if this prompt is allowed to take one or more RangePromptValue objects. |
boolean |
getConstrained()
Returns true, if the user fills a prompt with a value from a List Of Values. |
java.lang.String[] |
getDataProviderIDsArray()
Returns an array of data provider IDs. |
java.lang.String |
getDataProviderIDsArray(int i)
Returns the data provider ID at the specified index position. |
PromptValue[] |
getDefaultValuesArray()
Returns an array containing the default values for this prompt. |
PromptValue |
getDefaultValuesArray(int i)
Returns the default values for this prompt.at the specified index position. |
java.lang.String |
getDescription()
Returns a description of the prompt. |
boolean |
getHasLOV()
Returns true, if this prompt has an associated List Of Values. |
java.lang.String |
getID()
Returns the prompt ID. |
java.lang.String |
getLocalizedQuestion()
Returns the translated question. |
LOV |
getLOV()
Returns the List Of Values associated with this prompt. |
boolean |
getLovDelegated()
Returns true, if this LOV is delegated
Example: Check whether LOVs are delegated or not
LOVSearch objLOVSearch = LOVSearch.Factory.newInstance();
objLOVSearch.setPattern("*a");
objLOVSearch.setCaseSensitive(true);
RetrieveMustFillInfo fillInfo = RetrieveMustFillInfo.Factory.newInstance();
RetrievePromptsInfo promptInfo = RetrievePromptsInfo.Factory.newInstance();
promptInfo.setPromptLOVRetrievalMode(PromptLOVRetrievalMode.ALL);
promptInfo.setRefreshReturnedLOVs(true);
promptInfo.setReturnLOVOnMustFillPrompts(false);
promptInfo.setLOVSearch(objLOVSearch);
fillInfo.setRetrievePromptsInfo(promptInfo);
Action[] actions = new Action[1];
// Add a Refresh action to the Action array. |
LovDisplayType.Enum |
getLovDisplayType()
Returns the display type of the LOV. |
PromptValue |
getMaxValue()
Returns the maximum value possible for this prompt. |
PromptValue |
getMinValue()
Returns the minimum value possible for this prompt. |
java.lang.String |
getName()
Returns the name of the prompt. |
boolean |
getOptional()
Returns true, if this prompt is optional one. |
PromptValue[] |
getPreviousValuesArray()
Returns an array containing values selected on the last document refresh. |
PromptValue |
getPreviousValuesArray(int i)
Returns one of value selected on the last document refresh. |
PromptInfo[] |
getPromptToBeFilledArray()
Gets the array of PromptToBeFilled elements. |
PromptInfo |
getPromptToBeFilledArray(int i)
Gets the PromptToBeFilled element at the specified index position. |
PromptType.Enum |
getPromptType()
Returns the type of values the prompt takes. |
java.lang.String[] |
getPromptValueFormatArray()
Returns an array of strings containing possible formats for the prompt value. |
java.lang.String |
getPromptValueFormatArray(int i)
Returns a possible format for the prompt value. |
boolean |
getRequireAnswers()
Returns true, if the prompt has to be filled. |
void |
insertDataProviderIDs(int i,
java.lang.String dataProviderIDs)
Internal Use Only. |
org.apache.xmlbeans.XmlString |
insertNewDataProviderIDs(int i)
Internal Use Only. |
PromptValue |
insertNewDefaultValues(int i)
Internal Use Only. |
PromptValue |
insertNewPreviousValues(int i)
Internal Use Only. |
PromptInfo |
insertNewPromptToBeFilled(int i)
Internal Use Only. |
org.apache.xmlbeans.XmlString |
insertNewPromptValueFormat(int i)
Internal Use Only. |
void |
insertPromptValueFormat(int i,
java.lang.String promptValueFormat)
Internal Use Only. |
boolean |
isNilDataProviderIDsArray(int i)
Checks if the DataProviderIDs element is nil at the specified index position. |
boolean |
isNilDefaultValuesArray(int i)
Checks if the DefaultValues element is nil at the specified index position. |
boolean |
isNilDescription()
Checks if the Description element is set. |
boolean |
isNilLOV()
Checks if the LOV element is nil. |
boolean |
isNilLovDisplayType()
Checks if the LovDisplayType element is nil. |
boolean |
isNilMaxValue()
Checks if the MaxValue element is nil. |
boolean |
isNilMinValue()
Checks if the MinValue element is nil. |
boolean |
isNilPreviousValuesArray(int i)
Checks if the PreviousValues element is nil at the specified index position. |
boolean |
isNilPromptToBeFilledArray(int i)
Checks if the PromptToBeFilled element is nil at the specified index position. |
boolean |
isNilPromptValueFormatArray(int i)
Checks if the PromptValueFormat element is nil at the specified index position. |
boolean |
isSetDescription()
Checks if the Description element is set. |
boolean |
isSetLOV()
Checks if the LOV element is set. |
boolean |
isSetMaxValue()
Checks if the MaxValue element is set. |
boolean |
isSetMinValue()
Checks if the MinValue element is set. |
boolean |
isSetOptional()
Checks if the Optional attribute is set. |
void |
removeDataProviderIDs(int i)
Internal Use Only. |
void |
removeDefaultValues(int i)
Internal Use Only. |
void |
removePreviousValues(int i)
Internal Use Only. |
void |
removePromptToBeFilled(int i)
Internal Use Only. |
void |
removePromptValueFormat(int i)
Internal Use Only. |
void |
setAllowDiscreteValue(boolean allowDiscreteValue)
Internal Use Only. |
void |
setAllowMultiValues(boolean allowMultiValues)
Internal Use Only. |
void |
setAllowNonLeafValues(boolean allowNonLeafValues)
Internal Use Only. |
void |
setAllowRangeValue(boolean allowRangeValue)
Internal Use Only. |
void |
setConstrained(boolean constrained)
Internal Use Only. |
void |
setDataProviderIDsArray(int i,
java.lang.String dataProviderIDs)
Internal Use Only. |
void |
setDataProviderIDsArray(java.lang.String[] dataProviderIDsArray)
Internal Use Only. |
void |
setDefaultValuesArray(int i,
PromptValue defaultValues)
Internal Use Only. |
void |
setDefaultValuesArray(PromptValue[] defaultValuesArray)
Internal Use Only. |
void |
setDescription(java.lang.String description)
Internal Use Only. |
void |
setHasLOV(boolean hasLOV)
Internal Use Only. |
void |
setID(java.lang.String id)
Internal Use Only. |
void |
setLocalizedQuestion(java.lang.String localizedQuestion)
Internal use only |
void |
setLOV(LOV lov)
Internal Use Only. |
void |
setLovDelegated(boolean lovDelegated)
Internal Use Only. |
void |
setLovDisplayType(LovDisplayType.Enum lovDisplayType)
Internal Use Only. |
void |
setMaxValue(PromptValue maxValue)
Internal Use Only. |
void |
setMinValue(PromptValue minValue)
Internal Use Only. |
void |
setName(java.lang.String name)
Internal Use Only. |
void |
setNilDataProviderIDsArray(int i)
Internal Use Only. |
void |
setNilDefaultValuesArray(int i)
Internal Use Only. |
void |
setNilDescription()
Internal Use Only. |
void |
setNilLOV()
Internal Use Only. |
void |
setNilLovDisplayType()
Internal Use Only. |
void |
setNilMaxValue()
Internal Use Only. |
void |
setNilMinValue()
Internal Use Only. |
void |
setNilPreviousValuesArray(int i)
Internal Use Only. |
void |
setNilPromptToBeFilledArray(int i)
Internal Use Only. |
void |
setNilPromptValueFormatArray(int i)
Internal Use Only. |
void |
setOptional(boolean optional)
Internal Use Only. |
void |
setPreviousValuesArray(int i,
PromptValue previousValues)
Internal Use Only. |
void |
setPreviousValuesArray(PromptValue[] previousValuesArray)
Internal Use Only. |
void |
setPromptToBeFilledArray(int i,
PromptInfo promptToBeFilled)
Internal Use Only. |
void |
setPromptToBeFilledArray(PromptInfo[] promptToBeFilledArray)
Internal Use Only. |
void |
setPromptType(PromptType.Enum promptType)
Internal Use Only. |
void |
setPromptValueFormatArray(int i,
java.lang.String promptValueFormat)
Internal Use Only. |
void |
setPromptValueFormatArray(java.lang.String[] promptValueFormatArray)
Internal Use Only. |
void |
setRequireAnswers(boolean requireAnswers)
Internal Use Only. |
int |
sizeOfDataProviderIDsArray()
Returns the size of the DataProviderIDs array |
int |
sizeOfDefaultValuesArray()
Returns the size of DefaultValues array. |
int |
sizeOfPreviousValuesArray()
Returns the size of the PreviousValues array. |
int |
sizeOfPromptToBeFilledArray()
Returns the size of the PromptToBeFilled array |
int |
sizeOfPromptValueFormatArray()
Returns the size of the PromptvalueFormat array. |
void |
unsetDescription()
Internal Use Only. |
void |
unsetLOV()
Internal Use Only. |
void |
unsetMaxValue()
Internal Use Only. |
void |
unsetMinValue()
Internal Use Only. |
void |
unsetOptional()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetAllowDiscreteValue()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetAllowMultiValues()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetAllowNonLeafValues()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetAllowRangeValue()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetConstrained()
Internal Use Only. |
org.apache.xmlbeans.XmlString[] |
xgetDataProviderIDsArray()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetDataProviderIDsArray(int i)
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetDescription()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetHasLOV()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetID()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetLocalizedQuestion()
Internal use only |
org.apache.xmlbeans.XmlBoolean |
xgetLovDelegated()
Internal Use Only. |
LovDisplayType |
xgetLovDisplayType()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetName()
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetOptional()
Internal Use Only. |
PromptType |
xgetPromptType()
Internal Use Only. |
org.apache.xmlbeans.XmlString[] |
xgetPromptValueFormatArray()
Internal Use Only. |
org.apache.xmlbeans.XmlString |
xgetPromptValueFormatArray(int i)
Internal Use Only. |
org.apache.xmlbeans.XmlBoolean |
xgetRequireAnswers()
Internal Use Only. |
void |
xsetAllowDiscreteValue(org.apache.xmlbeans.XmlBoolean allowDiscreteValue)
Internal Use Only. |
void |
xsetAllowMultiValues(org.apache.xmlbeans.XmlBoolean allowMultiValues)
Internal Use Only. |
void |
xsetAllowNonLeafValues(org.apache.xmlbeans.XmlBoolean allowNonLeafValues)
Internal Use Only. |
void |
xsetAllowRangeValue(org.apache.xmlbeans.XmlBoolean allowRangeValue)
Internal Use Only. |
void |
xsetConstrained(org.apache.xmlbeans.XmlBoolean constrained)
Internal Use Only. |
void |
xsetDataProviderIDsArray(int i,
org.apache.xmlbeans.XmlString dataProviderIDs)
Internal Use Only. |
void |
xsetDataProviderIDsArray(org.apache.xmlbeans.XmlString[] dataProviderIDsArray)
Internal Use Only. |
void |
xsetDescription(org.apache.xmlbeans.XmlString description)
Internal Use Only. |
void |
xsetHasLOV(org.apache.xmlbeans.XmlBoolean hasLOV)
Internal Use Only. |
void |
xsetID(org.apache.xmlbeans.XmlString id)
Internal Use Only. |
void |
xsetLocalizedQuestion(org.apache.xmlbeans.XmlString localizedQuestion)
Internal use only |
void |
xsetLovDelegated(org.apache.xmlbeans.XmlBoolean lovDelegated)
Internal Use Only. |
void |
xsetLovDisplayType(LovDisplayType lovDisplayType)
Internal Use Only. |
void |
xsetName(org.apache.xmlbeans.XmlString name)
Internal Use Only. |
void |
xsetOptional(org.apache.xmlbeans.XmlBoolean optional)
Internal Use Only. |
void |
xsetPromptType(PromptType promptType)
Internal Use Only. |
void |
xsetPromptValueFormatArray(int i,
org.apache.xmlbeans.XmlString promptValueFormat)
Internal Use Only. |
void |
xsetPromptValueFormatArray(org.apache.xmlbeans.XmlString[] promptValueFormatArray)
Internal Use Only. |
void |
xsetRequireAnswers(org.apache.xmlbeans.XmlBoolean requireAnswers)
Internal Use Only. |
| Field Detail |
|---|
static final org.apache.xmlbeans.SchemaType type
Internal Use Only.
| Method Detail |
|---|
java.lang.String getDescription()
org.apache.xmlbeans.XmlString xgetDescription()
Internal Use Only.
boolean isNilDescription()
true if the Description element is nil, otherwise falseboolean isSetDescription()
true if the Description element is set, otherwise falsevoid setDescription(java.lang.String description)
Internal Use Only.
void xsetDescription(org.apache.xmlbeans.XmlString description)
Internal Use Only.
void setNilDescription()
Internal Use Only.
void unsetDescription()
Internal Use Only.
PromptValue[] getDefaultValuesArray()
PromptValue getDefaultValuesArray(int i)
i - The index of the PromptValue to be retrieved.
boolean isNilDefaultValuesArray(int i)
i - the index of the DefaultValues element
true if the DefaultValues element is nil, otherwise falseint sizeOfDefaultValuesArray()
void setDefaultValuesArray(PromptValue[] defaultValuesArray)
Internal Use Only.
void setDefaultValuesArray(int i,
PromptValue defaultValues)
Internal Use Only.
void setNilDefaultValuesArray(int i)
Internal Use Only.
PromptValue insertNewDefaultValues(int i)
Internal Use Only.
PromptValue addNewDefaultValues()
Internal Use Only.
void removeDefaultValues(int i)
Internal Use Only.
PromptValue[] getPreviousValuesArray()
PromptValue getPreviousValuesArray(int i)
i - The index of the PromptValue to be retrieved.
boolean isNilPreviousValuesArray(int i)
i - the index of the PreviousValues element
true if the PreviousValues element is nil, otherwise falseint sizeOfPreviousValuesArray()
void setPreviousValuesArray(PromptValue[] previousValuesArray)
Internal Use Only.
void setPreviousValuesArray(int i,
PromptValue previousValues)
Internal Use Only.
void setNilPreviousValuesArray(int i)
Internal Use Only.
PromptValue insertNewPreviousValues(int i)
Internal Use Only.
PromptValue addNewPreviousValues()
Internal Use Only.
void removePreviousValues(int i)
Internal Use Only.
java.lang.String[] getPromptValueFormatArray()
java.lang.String getPromptValueFormatArray(int i)
i - The index of the PromptValue format to be retrieved.
org.apache.xmlbeans.XmlString[] xgetPromptValueFormatArray()
Internal Use Only.
org.apache.xmlbeans.XmlString xgetPromptValueFormatArray(int i)
Internal Use Only.
boolean isNilPromptValueFormatArray(int i)
i - the index of the PromptValueFormat element
true if the PromptvalueFormat element is nil, otherwise falseint sizeOfPromptValueFormatArray()
void setPromptValueFormatArray(java.lang.String[] promptValueFormatArray)
Internal Use Only.
void setPromptValueFormatArray(int i,
java.lang.String promptValueFormat)
Internal Use Only.
void xsetPromptValueFormatArray(org.apache.xmlbeans.XmlString[] promptValueFormatArray)
Internal Use Only.
void xsetPromptValueFormatArray(int i,
org.apache.xmlbeans.XmlString promptValueFormat)
Internal Use Only.
void setNilPromptValueFormatArray(int i)
Internal Use Only.
void insertPromptValueFormat(int i,
java.lang.String promptValueFormat)
Internal Use Only.
void addPromptValueFormat(java.lang.String promptValueFormat)
Internal Use Only.
org.apache.xmlbeans.XmlString insertNewPromptValueFormat(int i)
Internal Use Only.
org.apache.xmlbeans.XmlString addNewPromptValueFormat()
Internal Use Only.
void removePromptValueFormat(int i)
Internal Use Only.
PromptValue getMinValue()
boolean isNilMinValue()
true if the MinValue element is nil, otherwise falseboolean isSetMinValue()
true if the MinValue element is set, otherwise falsevoid setMinValue(PromptValue minValue)
Internal Use Only.
PromptValue addNewMinValue()
void setNilMinValue()
Internal Use Only.
void unsetMinValue()
Internal Use Only.
PromptValue getMaxValue()
boolean isNilMaxValue()
true if the MaxValue element is nil, otherwise falseboolean isSetMaxValue()
true if the MaxValue element is set, otherwise falsevoid setMaxValue(PromptValue maxValue)
Internal Use Only.
PromptValue addNewMaxValue()
void setNilMaxValue()
Internal Use Only.
void unsetMaxValue()
Internal Use Only.
LOV getLOV()
LOV,
RetrievePromptsInfoboolean isNilLOV()
true if the LOV element is nil, otherwise falseboolean isSetLOV()
true if the LOV element is set, otherwise falsevoid setLOV(LOV lov)
Internal Use Only.
LOV addNewLOV()
Internal Use Only.
void setNilLOV()
Internal Use Only.
void unsetLOV()
Internal Use Only.
java.lang.String[] getDataProviderIDsArray()
Returns an array of data provider IDs.
java.lang.String getDataProviderIDsArray(int i)
Returns the data provider ID at the specified index position.
i - The index position.
org.apache.xmlbeans.XmlString[] xgetDataProviderIDsArray()
Internal Use Only.
org.apache.xmlbeans.XmlString xgetDataProviderIDsArray(int i)
Internal Use Only.
boolean isNilDataProviderIDsArray(int i)
i - the index of the DataProviderIDs element
true if the DataProviderIDs element is nil, otherwise falseint sizeOfDataProviderIDsArray()
void setDataProviderIDsArray(java.lang.String[] dataProviderIDsArray)
Internal Use Only.
void setDataProviderIDsArray(int i,
java.lang.String dataProviderIDs)
Internal Use Only.
void xsetDataProviderIDsArray(org.apache.xmlbeans.XmlString[] dataProviderIDsArray)
Internal Use Only.
void xsetDataProviderIDsArray(int i,
org.apache.xmlbeans.XmlString dataProviderIDs)
Internal Use Only.
void setNilDataProviderIDsArray(int i)
Internal Use Only.
void insertDataProviderIDs(int i,
java.lang.String dataProviderIDs)
Internal Use Only.
void addDataProviderIDs(java.lang.String dataProviderIDs)
Internal Use Only.
org.apache.xmlbeans.XmlString insertNewDataProviderIDs(int i)
Internal Use Only.
org.apache.xmlbeans.XmlString addNewDataProviderIDs()
Internal Use Only.
void removeDataProviderIDs(int i)
Internal Use Only.
PromptInfo[] getPromptToBeFilledArray()
PromptInfo getPromptToBeFilledArray(int i)
i - the index of the PromptToBeFilled element
boolean isNilPromptToBeFilledArray(int i)
i - the index of the PromptToBeFilled element
true if the PromptToBeFilled element is nil, otherwise falseint sizeOfPromptToBeFilledArray()
void setPromptToBeFilledArray(PromptInfo[] promptToBeFilledArray)
Internal Use Only.
void setPromptToBeFilledArray(int i,
PromptInfo promptToBeFilled)
Internal Use Only.
void setNilPromptToBeFilledArray(int i)
Internal Use Only.
PromptInfo insertNewPromptToBeFilled(int i)
Internal Use Only.
PromptInfo addNewPromptToBeFilled()
Internal Use Only.
void removePromptToBeFilled(int i)
Internal Use Only.
LovDisplayType.Enum getLovDisplayType()
LovDisplayType xgetLovDisplayType()
Internal Use Only.
boolean isNilLovDisplayType()
true if the LovDisplayType element is nil, otherwise falsevoid setLovDisplayType(LovDisplayType.Enum lovDisplayType)
Internal Use Only.
void xsetLovDisplayType(LovDisplayType lovDisplayType)
Internal Use Only.
void setNilLovDisplayType()
Internal Use Only.
boolean getLovDelegated()
true, if this LOV is delegated
Example: Check whether LOVs are delegated or not
LOVSearch objLOVSearch = LOVSearch.Factory.newInstance();
objLOVSearch.setPattern("*a");
objLOVSearch.setCaseSensitive(true);
RetrieveMustFillInfo fillInfo = RetrieveMustFillInfo.Factory.newInstance();
RetrievePromptsInfo promptInfo = RetrievePromptsInfo.Factory.newInstance();
promptInfo.setPromptLOVRetrievalMode(PromptLOVRetrievalMode.ALL);
promptInfo.setRefreshReturnedLOVs(true);
promptInfo.setReturnLOVOnMustFillPrompts(false);
promptInfo.setLOVSearch(objLOVSearch);
fillInfo.setRetrievePromptsInfo(promptInfo);
Action[] actions = new Action[1];
// Add a Refresh action to the Action array.
actions[0] = Refresh.Factory.newInstance();
// Obtain a DocumentInformation object from the ReportEngine.
DocumentInformation boDocInfo = boRepEng.getDocumentInformation(docid,fillInfo,actions,null,null);
if (boDocInfo.getMustFillPrompts())
{
PromptInfo[] boPromptInfo = boDocInfo.getPromptInfoArray();
out.print(boPromptInfo[0].getLovDelegated());
}
true, if this LOV is delegated, otherwise falseorg.apache.xmlbeans.XmlBoolean xgetLovDelegated()
Internal Use Only.
void setLovDelegated(boolean lovDelegated)
Internal Use Only.
void xsetLovDelegated(org.apache.xmlbeans.XmlBoolean lovDelegated)
Internal Use Only.
java.lang.String getName()
org.apache.xmlbeans.XmlString xgetName()
Internal Use Only.
void setName(java.lang.String name)
Internal Use Only.
void xsetName(org.apache.xmlbeans.XmlString name)
Internal Use Only.
java.lang.String getLocalizedQuestion()
String value of the localized question.org.apache.xmlbeans.XmlString xgetLocalizedQuestion()
void setLocalizedQuestion(java.lang.String localizedQuestion)
void xsetLocalizedQuestion(org.apache.xmlbeans.XmlString localizedQuestion)
java.lang.String getID()
FillPrompt,
FillPrompts,
RetrievePromptsInfo,
LOVorg.apache.xmlbeans.XmlString xgetID()
Internal Use Only.
void setID(java.lang.String id)
Internal Use Only.
void xsetID(org.apache.xmlbeans.XmlString id)
Internal Use Only.
boolean getConstrained()
LOVorg.apache.xmlbeans.XmlBoolean xgetConstrained()
Internal Use Only.
void setConstrained(boolean constrained)
Internal Use Only.
void xsetConstrained(org.apache.xmlbeans.XmlBoolean constrained)
Internal Use Only.
boolean getRequireAnswers()
org.apache.xmlbeans.XmlBoolean xgetRequireAnswers()
Internal Use Only.
void setRequireAnswers(boolean requireAnswers)
Internal Use Only.
void xsetRequireAnswers(org.apache.xmlbeans.XmlBoolean requireAnswers)
Internal Use Only.
boolean getHasLOV()
LOVorg.apache.xmlbeans.XmlBoolean xgetHasLOV()
Internal Use Only.
void setHasLOV(boolean hasLOV)
Internal Use Only.
void xsetHasLOV(org.apache.xmlbeans.XmlBoolean hasLOV)
Internal Use Only.
boolean getAllowMultiValues()
org.apache.xmlbeans.XmlBoolean xgetAllowMultiValues()
Internal Use Only.
void setAllowMultiValues(boolean allowMultiValues)
Internal Use Only.
void xsetAllowMultiValues(org.apache.xmlbeans.XmlBoolean allowMultiValues)
Internal Use Only.
boolean getAllowDiscreteValue()
DiscretePromptValueorg.apache.xmlbeans.XmlBoolean xgetAllowDiscreteValue()
Internal Use Only.
void setAllowDiscreteValue(boolean allowDiscreteValue)
Internal Use Only.
void xsetAllowDiscreteValue(org.apache.xmlbeans.XmlBoolean allowDiscreteValue)
Internal Use Only.
boolean getAllowRangeValue()
RangePromptValueorg.apache.xmlbeans.XmlBoolean xgetAllowRangeValue()
Internal Use Only.
void setAllowRangeValue(boolean allowRangeValue)
Internal Use Only.
void xsetAllowRangeValue(org.apache.xmlbeans.XmlBoolean allowRangeValue)
Internal Use Only.
PromptType.Enum getPromptType()
PromptTypePromptType xgetPromptType()
Internal Use Only.
void setPromptType(PromptType.Enum promptType)
Internal Use Only.
void xsetPromptType(PromptType promptType)
Internal Use Only.
boolean getAllowNonLeafValues()
true if the value is at root level, otherwise false.org.apache.xmlbeans.XmlBoolean xgetAllowNonLeafValues()
Internal Use Only.
void setAllowNonLeafValues(boolean allowNonLeafValues)
Internal Use Only.
void xsetAllowNonLeafValues(org.apache.xmlbeans.XmlBoolean allowNonLeafValues)
Internal Use Only.
boolean getOptional()
Returns true, if this prompt is optional one.
true, if this prompt is optional one, otherwise false.org.apache.xmlbeans.XmlBoolean xgetOptional()
Internal Use Only.
boolean isSetOptional()
"true", if this prompt is optional one, otherwise false.void setOptional(boolean optional)
Internal Use Only.
void xsetOptional(org.apache.xmlbeans.XmlBoolean optional)
Internal Use Only.
void unsetOptional()
Internal Use Only.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||