Package com.microstrategy.web.beans
Interface HighlightedObject
- 
 public interface HighlightedObjectThis interface represents an object that a user selects on a Web browser and wants to highlight in the next Web page.- Since:
- MicroStrategy Web 7.3.1 or earlier
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBlockBegin()Returns the value of blockBegin for incremental fetch on the highlighted object.intgetBlockCount()Returns the value of blockCount for incremental fetch on the highlighted object.WebFiltergetFilter()Returns theWebFilterbeing applied on the highlighted object.java.lang.StringgetObjectId()Return the object id of the highlighted object.intgetObjectType()Returns the object type of the highlighted object.voidsetBlockBegin(int blockBegin)Sets the starting item for incremental fetch.voidsetBlockCount(int blockCount)Sets the number of blocks of items for incemental fetchvoidsetFilter(WebFilter filter)Sets aWebFilteron the current highlighted object.
 
- 
- 
- 
Method Detail- 
getObjectIdjava.lang.String getObjectId() Return the object id of the highlighted object.- Returns:
- the object id of the highlighted object.
 
 - 
getObjectTypeint getObjectType() Returns the object type of the highlighted object. The type is from eitherEnumDSSXMLObjectTypesorEnumWebDependentObjectType.- Returns:
- the object type of the highlighted object
 
 - 
getBlockBeginint getBlockBegin() Returns the value of blockBegin for incremental fetch on the highlighted object.- Returns:
- the value of blockBegin
 
 - 
getBlockCountint getBlockCount() Returns the value of blockCount for incremental fetch on the highlighted object.- Returns:
- the value of blockCount
 
 - 
getFilterWebFilter getFilter() Returns theWebFilterbeing applied on the highlighted object. ForWebAttribute, the filter is used to browseWebElements.- Returns:
- the WebFilter being applied on the highlighted object.
 
 - 
setBlockBeginvoid setBlockBegin(int blockBegin) Sets the starting item for incremental fetch.- Parameters:
- blockBegin- the starting item to fetch.
 
 - 
setBlockCountvoid setBlockCount(int blockCount) Sets the number of blocks of items for incemental fetch- Parameters:
- blockCount- the number of blocks of items to fetch.
 
 - 
setFiltervoid setFilter(WebFilter filter) Sets aWebFilteron the current highlighted object. ForWebAttribute, the filter is used to browseWebElements.- Parameters:
- filter- the WebFilter to set.
 
 
- 
 
-