Package com.microstrategy.web.objects.rw
Interface RWVisitor
-
- All Known Subinterfaces:
RWVisitor2
public interface RWVisitor
This interface defines callback methods that are called during decument hierarchy traversal.- Since:
- MicroStrategy Web 8.0.0
- See Also:
RWInstance.iterate(com.microstrategy.web.objects.rw.RWVisitor, com.microstrategy.web.objects.RWIterateSettings)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onEndSection(RWSection section)
This method is called at the end of every sectionvoid
onObject(RWObject ob)
This method is called for each data objectvoid
onStartSection(RWSection section)
This method is called at the beginning of every section
-
-
-
Method Detail
-
onStartSection
void onStartSection(RWSection section)
This method is called at the beginning of every section- Parameters:
section
-
-
onEndSection
void onEndSection(RWSection section)
This method is called at the end of every section- Parameters:
section
-
-
onObject
void onObject(RWObject ob)
This method is called for each data object- Parameters:
ob
-
-
-