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