Package com.microstrategy.web.beans
Interface RWBeanVisitor2
-
- All Superinterfaces:
RWBeanVisitor
- All Known Implementing Classes:
AbstractRWBeanVisitor2
,AbstractRWDataVisualizationTransform
,AbstractSimplifiedRWXMLTransform
,MobileChunkedRWTransform
,MojoIVETransform.IVELayoutContext
,MojoIVETransform.IVELayoutContextDefn
,MojoRWDTransform.RWLayoutContext
,MojoRWDTransform.RWLayoutContextDefn
,RWFlashTransform
,RWLayoutTransform
,RWXMLTransform
public interface RWBeanVisitor2 extends RWBeanVisitor
| Enhanced version of bean visitor- Since:
- MicroStrategy Web 8.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onEnd(MarkupOutput mo)
Called on iteration endvoid
onEndSubsection(RWSection subsection, MarkupOutput mo, boolean isBordered)
A subsection border occurs between two subsections, or if the subsection is the very last section in the document.void
onStart(RWDefinition definition, MarkupOutput mo)
Called on iteration start upvoid
onStartSubsection(RWSection subsection, MarkupOutput mo)
Called on start of subsection-
Methods inherited from interface com.microstrategy.web.beans.RWBeanVisitor
onEndSection, onObject, onObject, onObject, onStartSection
-
-
-
-
Method Detail
-
onStart
void onStart(RWDefinition definition, MarkupOutput mo)
Called on iteration start up- Parameters:
definition
- document definitionmo
- markup output
-
onEnd
void onEnd(MarkupOutput mo)
Called on iteration end- Parameters:
mo
- markup output
-
onStartSubsection
void onStartSubsection(RWSection subsection, MarkupOutput mo)
Called on start of subsection- Parameters:
subsection
- subsectionmo
- markup output
-
onEndSubsection
void onEndSubsection(RWSection subsection, MarkupOutput mo, boolean isBordered)
A subsection border occurs between two subsections, or if the subsection is the very last section in the document.- Parameters:
subsection
- the subsection before the border.mo
- the markup output.
-
-