Class RWSectionsVisitor
- java.lang.Object
-
- com.microstrategy.web.beans.AbstractRWBeanVisitor
-
- com.microstrategy.web.app.transforms.RWSectionsVisitor
-
- All Implemented Interfaces:
RWBeanVisitor
public class RWSectionsVisitor extends AbstractRWBeanVisitor
- Since:
- MicroStrategy Web 8.1.0
-
-
Constructor Summary
Constructors Constructor Description RWSectionsVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<RWSection>
getSections(RWBean rwBean, boolean visibleOnly)
java.util.List<RWSection>
getSections(RWBean rwBean, boolean visibleOnly, java.lang.String layoutKey)
void
onStartSection(RWSection section, MarkupOutput out)
Callback used by RWVisitor for a new Section (or subsection).-
Methods inherited from class com.microstrategy.web.beans.AbstractRWBeanVisitor
onEndSection, onObject, onObject, onObject
-
-
-
-
Method Detail
-
getSections
public java.util.List<RWSection> getSections(RWBean rwBean, boolean visibleOnly, java.lang.String layoutKey) throws WebBeanException
- Throws:
WebBeanException
-
getSections
public java.util.List<RWSection> getSections(RWBean rwBean, boolean visibleOnly) throws WebBeanException
- Throws:
WebBeanException
-
onStartSection
public void onStartSection(RWSection section, MarkupOutput out)
Callback used by RWVisitor for a new Section (or subsection).- Specified by:
onStartSection
in interfaceRWBeanVisitor
- Overrides:
onStartSection
in classAbstractRWBeanVisitor
- Parameters:
section
- the report writing document section.out
- the markup output.- See Also:
RWVisitor.onStartSection(RWSection)
-
-