01: package org.netbeans.modules.reportgenerator.api;
02:
03: import java.util.List;
04:
05: /**
06: * Base interface for Report objects
07: * @author radval
08: *
09: */
10: public interface ReportNode {
11:
12: List<ReportNode> getChildren();
13:
14: void addChild(ReportNode child);
15:
16: void removeChild(ReportNode child);
17: }
|