com.microstrategy.web.app.beans.GUIOperator |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract int |
getDSSFunction()
Returns the dss function value of this operator.
| ||||||||||
abstract String |
getDisplayName()
Returns the display name of this operator.
| ||||||||||
abstract int |
getFunctionType()
Returns the function type of this operator.
| ||||||||||
abstract int |
getWebFunction()
Returns the web function value of this operator
Web function value.
| ||||||||||
abstract boolean |
isAscending()
Returns whether current operator is for ascending.
| ||||||||||
abstract void |
setAscending(boolean val)
Sets whether current operator is ascending.
| ||||||||||
abstract void |
setDSSFunction(int dssFunc)
Sets the dss function value of this operator
| ||||||||||
abstract void |
setDisplayName(String disp)
Sets display name for this operator.
| ||||||||||
abstract void |
setFunctionType(int funcType)
Sets the function type of this operator.
| ||||||||||
abstract void |
setWebFunction(int func)
Sets web function value of this operator.
|
Returns the dss function value of this operator. This function value has to be considered with function type and ascending/descending information to fully describe an operator.
EnumDSSXMLFunction
Returns the display name of this operator. If this operator loaded by web application, it is localized by session's locale.
Returns the function type of this operator.
EnumWebFunctionType
.
Returns the web function value of this operator
Web function value. This value with function type, can fully describe the operator.
This is the value mostly used in web application. It is a value from two enumerations.
When the function type is Generic WebFunctionTypeGeneric
,
the value is the same as DSS function value getDSSFunction()
. When the function
type is Rank WebFunctionTypeRankQual
or Percentage WebFunctionTypePercentQual
,
the value is from EnumWebMRPFunction
.
EnumDSSXMLFunction
or EnumWebMRPFunction
.
Returns whether current operator is for ascending. This value is only meaningful when
function type is WebFunctionTypeRankQual
or WebFunctionTypePercentQual
.
true
if current operator is for ascending. Otherwise, false
.
Sets whether current operator is ascending. This value is only meaningful when
function type is WebFunctionTypeRankQual
or WebFunctionTypePercentQual
.
val | The value to set. |
---|
Sets the dss function value of this operator
Sets display name for this operator.
disp | The name. |
---|
Sets the function type of this operator.
funcType | The function type to set. |
---|
Sets web function value of this operator.
func | The function to set |
---|