01: /*
02: * ReportCustomizationOptions.java
03: *
04: * Created on Oct 16, 2007, 10:38:13 AM
05: *
06: * To change this template, choose Tools | Templates
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.reportgenerator.api;
11:
12: /**
13: *
14: * @author radval
15: */
16: public class ReportCustomizationOptions {
17:
18: private boolean mGenerateVerboseReport = true;
19: private boolean mIncludeOnlyElementsWithDocumentation = false;
20:
21: public void setGenerateVerboseReport(boolean generateVerboseReport) {
22: mGenerateVerboseReport = generateVerboseReport;
23: }
24:
25: public boolean isGenerateVerboseReport() {
26: return mGenerateVerboseReport;
27: }
28:
29: public void setIncludeOnlyElementsWithDocumentation(boolean include) {
30: this .mIncludeOnlyElementsWithDocumentation = include;
31: }
32:
33: public boolean isIncludeOnlyElementsWithDocumentation() {
34: return this.mIncludeOnlyElementsWithDocumentation;
35: }
36: }
|