The section walker interface is used by those wishing to perform an
action on every section in a report. It is used as an argument to
Report.withSectionsDo. Typical use:
report.withSectionsDo(new SectionWalker() {
public void step(Section s) {
// Do something with the section
}
});