01: package jimm.datavision;
02:
03: /**
04: * Returned by a report when asked about a section's location within
05: * the report. Handed back to the report when it is asked to re-insert
06: * a section. Used by <code>DeleteSectionCommand</code>.
07: *
08: * @author Jim Menard, <a href="mailto:jimm@io.com">jimm@io.com</a>
09: * @see jimm.datavision.gui.cmd.DeleteSectionCommand
10: */
11: public class ReportSectionLoc {
12:
13: Section section;
14: SectionArea area;
15: int index;
16:
17: public ReportSectionLoc(Section s, SectionArea a, int i) {
18: section = s;
19: area = a;
20: index = i;
21: }
22:
23: }
|