01: package org.netbeans.modules.reportgenerator.api;
02:
03: /**
04: * ReportFooter represents the footer section of a report.
05: * @author radval
06: *
07: */
08: public interface ReportFooter {
09:
10: /**
11: * Get Footer description
12: * @return
13: */
14: String getDescription();
15:
16: /**
17: * Set Footer description
18: * @param description
19: */
20: void setDescription(String description);
21:
22: }
|