| jimm.datavision.FieldWalker
All known Subclasses: jimm.datavision.gui.FormatWin, jimm.datavision.gui.BoundsWin,
FieldWalker | public interface FieldWalker (Code) | | The field walker interface is used by those wishing to perform an action
on every field in a report. It is used as an argument to
Report.withFieldsDo . Typical use:
report.withFieldsDo(new FieldWalker() {
public void step(Field f) {
// Do something with the field
}
});
author: Jim Menard, jimm@io.com |
Method Summary | |
public void | step(Field f) This method is called once for each field, when used from within
Report.withFieldsDo . |
step | public void step(Field f)(Code) | | This method is called once for each field, when used from within
Report.withFieldsDo .
Parameters: f - a field |
|
|