jimm.datavision
Interface SectionWalker
public interface SectionWalker
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
}
});
- Author:
- Jim Menard, jimm@io.com
|
Method Summary |
void |
step(Section s)
This method is called once for each section, when used from within
Report.withSectionsDo. |
step
void step(Section s)
- This method is called once for each section, when used from within
Report.withSectionsDo.
- Parameters:
s - a section