1 package jimm.datavision; 2 3 /** 4 * Returned by a report when asked about a section's location within 5 * the report. Handed back to the report when it is asked to re-insert 6 * a section. Used by <code>DeleteSectionCommand</code>. 7 * 8 * @author Jim Menard, <a HREF="mailto:jimm@io.com">jimm@io.com</a> 9 * @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 } 24