Package com.microstrategy.web.objects.rw
Interface RWVisitor2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEnd()Called on iteration endvoidonEndSubsection(RWSection subsection, boolean isBordered)Callback denoting end of a subsection.voidonStart(RWDefinition definition)Called on iteration startvoidonStartSubsection(RWSection subsection)Called on subsection start-
Methods inherited from interface com.microstrategy.web.objects.rw.RWVisitor
onEndSection, onObject, onStartSection
-
-
-
-
Method Detail
-
onStart
void onStart(RWDefinition definition)
Called on iteration start- Parameters:
definition- document definition
-
onEnd
void onEnd()
Called on iteration end
-
onStartSubsection
void onStartSubsection(RWSection subsection)
Called on subsection start- Parameters:
subsection- RWSection
-
onEndSubsection
void onEndSubsection(RWSection subsection, boolean isBordered)
Callback denoting end of a subsection. 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 if it has one.isBordered- whether subsection is bordered.
-
-