java.lang.Object | |
↳ | com.microstrategy.web.beans.AbstractRWBeanVisitor |
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
AbstractRWBeanVisitor() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
void | onEndSection(RWSection section, MarkupOutput mo) | ||||||||||
void |
onObject(RWObject ob, MarkupOutput mo)
This is invoked as a fallback if the more specific | ||||||||||
void |
onObject(RWBean rwBean, RWObject ob, MarkupOutput mo)
Specific case where
| ||||||||||
void |
onObject(ViewBean viewBean, RWObject ob, MarkupOutput mo)
Specific case where
| ||||||||||
void | onStartSection(RWSection section, MarkupOutput mo) |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
This is invoked as a fallback if the more specific onObject
declarations are not matched.
ob | the report writing document object. |
---|---|
mo | the markup output. |
Specific case where
RWObject#getDefinition().getType == EnumRWUnitTypes.RWUNIT_SUBREPORT
.
The corresponding data value is encapsulated in a RWBean for ease of use.
rwBean | an embedded bean. |
---|---|
ob | the report writing document object. |
mo | the markup output. |
Specific case where
RWObject#getDefinition().getType == EnumRWUnitTypes.RWUNIT_GRIDGRAPH
The corresponding data value is encapsulated in a ViewBean for ease of use.
viewBean | an embedded bean. |
---|---|
ob | the report writing document object. |
mo | the markup output. |