com.microstrategy.web.beans.HighlightedObject |
This interface represents an object that a user selects on a Web browser and wants to highlight in the next Web page.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract int |
getBlockBegin()
Returns the value of blockBegin for incremental fetch on the highlighted object.
| ||||||||||
abstract int |
getBlockCount()
Returns the value of blockCount for incremental fetch on the highlighted object.
| ||||||||||
abstract WebFilter |
getFilter()
Returns the
WebFilter being applied on the highlighted object. | ||||||||||
abstract String |
getObjectId()
Return the object id of the highlighted object.
| ||||||||||
abstract int |
getObjectType()
Returns the object type of the highlighted object.
| ||||||||||
abstract void |
setBlockBegin(int blockBegin)
Sets the starting item for incremental fetch.
| ||||||||||
abstract void |
setBlockCount(int blockCount)
Sets the number of blocks of items for incemental fetch
| ||||||||||
abstract void |
setFilter(WebFilter filter)
Sets a
WebFilter on the current highlighted object. |
Returns the value of blockBegin for incremental fetch on the highlighted object.
Returns the value of blockCount for incremental fetch on the highlighted object.
Returns the WebFilter
being applied on the highlighted object. For
WebAttribute
, the filter is used to browse WebElements
.
Return the object id of the highlighted object.
Returns the object type of the highlighted object. The type is from either
EnumDSSXMLObjectTypes
or EnumWebDependentObjectType
.
Sets the starting item for incremental fetch.
blockBegin | the starting item to fetch. |
---|
Sets the number of blocks of items for incemental fetch
blockCount | the number of blocks of items to fetch. |
---|
Sets a WebFilter
on the current highlighted object. For
WebAttribute
, the filter is used to browse WebElements
.
filter | the WebFilter to set. |
---|