Package com.microstrategy.web.beans
Class AbstractRWBeanVisitor2
- java.lang.Object
-
- com.microstrategy.web.beans.AbstractRWBeanVisitor
-
- com.microstrategy.web.beans.AbstractRWBeanVisitor2
-
- All Implemented Interfaces:
RWBeanVisitor
,RWBeanVisitor2
public class AbstractRWBeanVisitor2 extends AbstractRWBeanVisitor implements RWBeanVisitor2
- Since:
- MicroStrategy Web 8.1.0
-
-
Constructor Summary
Constructors Constructor Description AbstractRWBeanVisitor2()
-
Method Summary
All Methods Instance Methods Concrete 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 class com.microstrategy.web.beans.AbstractRWBeanVisitor
onEndSection, onObject, onObject, onObject, onStartSection
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.microstrategy.web.beans.RWBeanVisitor
onEndSection, onObject, onObject, onObject, onStartSection
-
-
-
-
Method Detail
-
onStart
public void onStart(RWDefinition definition, MarkupOutput mo)
Description copied from interface:RWBeanVisitor2
Called on iteration start up- Specified by:
onStart
in interfaceRWBeanVisitor2
- Parameters:
definition
- document definitionmo
- markup output
-
onEnd
public void onEnd(MarkupOutput mo)
Description copied from interface:RWBeanVisitor2
Called on iteration end- Specified by:
onEnd
in interfaceRWBeanVisitor2
- Parameters:
mo
- markup output
-
onStartSubsection
public void onStartSubsection(RWSection subsection, MarkupOutput mo)
Description copied from interface:RWBeanVisitor2
Called on start of subsection- Specified by:
onStartSubsection
in interfaceRWBeanVisitor2
- Parameters:
subsection
- subsectionmo
- markup output
-
onEndSubsection
public void onEndSubsection(RWSection subsection, MarkupOutput mo, boolean isBordered)
Description copied from interface:RWBeanVisitor2
A subsection border occurs between two subsections, or if the subsection is the very last section in the document.- Specified by:
onEndSubsection
in interfaceRWBeanVisitor2
- Parameters:
subsection
- the subsection before the border.mo
- the markup output.
-
-