1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package com.soebes.maven.plugins.doxygen;
23
24 import java.io.File;
25
26 import org.apache.maven.plugin.AbstractMojo;
27 import org.apache.maven.plugins.annotations.Parameter;
28
29
30
31
32
33
34
35
36 public abstract class AbstractDoxygenConfigurationMojo extends AbstractMojo {
37
38
39
40
41
42
43 @Parameter(property = "doxygen.configurationFile")
44 private File configurationFile;
45
46
47
48
49
50
51
52
53
54 @Parameter(property="doxygen.doxyfileEncoding", defaultValue="UTF-8")
55 private String doxyfileEncoding;
56
57
58
59
60
61
62 @Parameter(property="doxygen.projectName", defaultValue="${project.name}")
63 private String projectName;
64
65
66
67
68
69
70
71
72 @Parameter(property = "doxygen.projectNumber")
73 private String projectNumber;
74
75
76
77
78
79
80
81
82
83
84 @Parameter(property="doxygen.createSubdirs", defaultValue="false")
85 private boolean createSubdirs;
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100 @Parameter(property="doxygen.outputLanguage", defaultValue="English")
101 private String outputLanguage;
102
103
104
105
106
107
108
109
110 @Parameter(property="doxygen.briefMemberDesc", defaultValue="true")
111 private boolean briefMemberDesc;
112
113
114
115
116
117
118
119
120 @Parameter(property="doxygen.repeatBrief", defaultValue="true")
121 private boolean repeatBrief;
122
123
124
125
126
127
128
129
130
131
132
133
134
135 @Parameter(property="doxygen.abbreviateBrief")
136 private String abbreviateBrief;
137
138
139
140
141
142
143
144 @Parameter(property="doxygen.alwaysDetailedSec", defaultValue="false")
145 private boolean alwaysDetailedSec;
146
147
148
149
150
151
152
153
154 @Parameter(property="doxygen.inlineInheritedMemb", defaultValue="false")
155 private boolean inlineInheritedMemb;
156
157
158
159
160
161
162
163 @Parameter(property="doxygen.fullPathNames", defaultValue="true")
164 private boolean fullPathNames;
165
166
167
168
169
170
171
172
173
174
175 @Parameter(property="doxygen.stripFromPath")
176 private String stripFromPath;
177
178
179
180
181
182
183
184
185
186
187 @Parameter(property="doxygen.stripFromIncPath")
188 private String stripFromIncPath;
189
190
191
192
193
194
195
196 @Parameter(property="doxygen.shortNames", defaultValue="false")
197 private boolean shortNames;
198
199
200
201
202
203
204
205
206
207 @Parameter(property="doxygen.javadocAutobrief", defaultValue="false")
208 private boolean javadocAutobrief;
209
210
211
212
213
214
215
216
217
218 @Parameter(property="doxygen.qtAutobrief", defaultValue="false")
219 private boolean qtAutobrief;
220
221
222
223
224
225
226
227
228
229 @Parameter(property="doxygen.multilineCppIsBrief", defaultValue="false")
230 private boolean multilineCppIsBrief;
231
232
233
234
235
236
237
238 @Parameter(property="doxygen.inheritDocs", defaultValue="true")
239 private boolean inheritDocs;
240
241
242
243
244
245
246
247 @Parameter(property="doxygen.separateMemberPages", defaultValue="false")
248 private boolean separateMemberPages;
249
250
251
252
253
254
255 @Parameter(property="doxygen.tabSize", defaultValue="8")
256 private Integer tabSize;
257
258
259
260
261
262
263
264
265
266
267 @Parameter(property="doxygen.aliases")
268 private String aliases;
269
270
271
272
273
274
275
276
277 @Parameter(property="doxygen.optimizeOutputForC", defaultValue="false")
278 private boolean optimizeOutputForC;
279
280
281
282
283
284
285
286
287 @Parameter(property="doxygen.optimizeOutputJava", defaultValue="false")
288 private boolean optimizeOutputJava;
289
290
291
292
293
294
295
296 @Parameter(property="doxygen.optimizeForFortran", defaultValue="false")
297 private boolean optimizeForFortran;
298
299
300
301
302
303
304 @Parameter(property="doxygen.optimizeOutputVhdl", defaultValue="false")
305 private boolean optimizeOutputVhdl;
306
307
308
309
310
311
312
313
314
315
316
317 @Parameter(property="doxygen.builtinStlSupport", defaultValue="true")
318 private boolean builtinStlSupport;
319
320
321
322
323
324
325 @Parameter(property="doxygen.cppCliSupport", defaultValue="false")
326 private boolean cppCliSupport;
327
328
329
330
331
332
333
334
335 @Parameter(property="doxygen.sipSupport", defaultValue="false")
336 private boolean sipSupport;
337
338
339
340
341
342
343
344
345
346
347 @Parameter(property="doxygen.idlPropertySupport", defaultValue="true")
348 private boolean idlPropertySupport;
349
350
351
352
353
354
355
356
357
358 @Parameter(property="doxygen.distributeGroupDoc", defaultValue="false")
359 private boolean distributeGroupDoc;
360
361
362
363
364
365
366
367
368
369 @Parameter(property="doxygen.subgrouping", defaultValue="true")
370 private boolean subgrouping;
371
372
373
374
375
376
377
378
379
380
381
382
383 @Parameter(property="doxygen.typedefHidesStruct", defaultValue="false")
384 private boolean typedefHidesStruct;
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402 @Parameter(property="doxygen.symbolCacheSize", defaultValue="0")
403 private Integer symbolCacheSize;
404
405
406
407
408
409
410
411
412 @Parameter(property="doxygen.extractAll", defaultValue="false")
413 private boolean extractAll;
414
415
416
417
418
419
420 @Parameter(property="doxygen.extractPrivate", defaultValue="false")
421 private boolean extractPrivate;
422
423
424
425
426
427
428 @Parameter(property="doxygen.extractStatic", defaultValue="false")
429 private boolean extractStatic;
430
431
432
433
434
435
436
437 @Parameter(property="doxygen.extractLocalClasses", defaultValue="true")
438 private boolean extractLocalClasses;
439
440
441
442
443
444
445
446
447 @Parameter(property="doxygen.extractLocalMethods", defaultValue="false")
448 private boolean extractLocalMethods;
449
450
451
452
453
454
455
456
457
458 @Parameter(property="doxygen.extractAnonNspaces", defaultValue="false")
459 private boolean extractAnonNspaces;
460
461
462
463
464
465
466
467
468
469 @Parameter(property="doxygen.hideUndocMembers", defaultValue="false")
470 private boolean hideUndocMembers;
471
472
473
474
475
476
477
478
479 @Parameter(property="doxygen.hideUndocClasses", defaultValue="false")
480 private boolean hideUndocClasses;
481
482
483
484
485
486
487
488 @Parameter(property="doxygen.hideFriendCompounds", defaultValue="false")
489 private boolean hideFriendCompounds;
490
491
492
493
494
495
496
497
498 @Parameter(property="doxygen.hideInBodyDocs", defaultValue="false")
499 private boolean hideInBodyDocs;
500
501
502
503
504
505
506
507
508 @Parameter(property="doxygen.internalDocs", defaultValue="false")
509 private boolean internalDocs;
510
511
512
513
514
515
516
517
518
519 @Parameter(property="doxygen.caseSenseNames", defaultValue="true")
520 private boolean caseSenseNames;
521
522
523
524
525
526
527
528 @Parameter(property="doxygen.hideScopeNames", defaultValue="false")
529 private boolean hideScopeNames;
530
531
532
533
534
535
536
537 @Parameter(property="doxygen.showIncludeFiles", defaultValue="true")
538 private boolean showIncludeFiles;
539
540
541
542
543
544
545 @Parameter(property="doxygen.inlineInfo", defaultValue="true")
546 private boolean inlineInfo;
547
548
549
550
551
552
553
554
555 @Parameter(property="doxygen.sortMemberDocs", defaultValue="true")
556 private boolean sortMemberDocs;
557
558
559
560
561
562
563
564
565 @Parameter(property="doxygen.sortBriefDocs", defaultValue="false")
566 private boolean sortBriefDocs;
567
568
569
570
571
572
573
574 @Parameter(property="doxygen.sortGroupNames", defaultValue="false")
575 private boolean sortGroupNames;
576
577
578
579
580
581
582
583
584
585
586 @Parameter(property="doxygen.sortByScopeName", defaultValue="false")
587 private boolean sortByScopeName;
588
589
590
591
592
593
594
595 @Parameter(property="doxygen.generateTodolist", defaultValue="true")
596 private boolean generateTodolist;
597
598
599
600
601
602
603
604 @Parameter(property="doxygen.generateTestlist", defaultValue="true")
605 private boolean generateTestlist;
606
607
608
609
610
611
612
613 @Parameter(property="doxygen.generateBuglist", defaultValue="true")
614 private boolean generateBuglist;
615
616
617
618
619
620
621
622 @Parameter(property="doxygen.generateDeprecatedlist", defaultValue="true")
623 private boolean generateDeprecatedlist;
624
625
626
627
628
629
630 @Parameter(property="doxygen.enabledSections")
631 private String enabledSections;
632
633
634
635
636
637
638
639
640
641
642
643 @Parameter(property="doxygen.maxInitializerLines", defaultValue="30")
644 private Integer maxInitializerLines;
645
646
647
648
649
650
651
652
653 @Parameter(property="doxygen.showUsedFiles", defaultValue="true")
654 private boolean showUsedFiles;
655
656
657
658
659
660
661
662 @Parameter(property="doxygen.showDirectories", defaultValue="true")
663 private boolean showDirectories;
664
665
666
667
668
669
670
671 @Parameter(property="doxygen.showFiles", defaultValue="true")
672 private boolean showFiles;
673
674
675
676
677
678
679
680 @Parameter(property="doxygen.showNamespaces", defaultValue="true")
681 private boolean showNamespaces;
682
683
684
685
686
687
688
689
690
691
692
693
694 @Parameter(property="doxygen.fileVersionFilter")
695 private String fileVersionFilter;
696
697
698
699
700
701
702
703
704
705
706 @Parameter(property="doxygen.layoutFile")
707 private String layoutFile;
708
709
710
711
712
713
714 @Parameter(property="doxygen.quiet", defaultValue="true")
715 private boolean quiet;
716
717
718
719
720
721
722
723 @Parameter(property="doxygen.warnings", defaultValue="true")
724 private boolean warnings;
725
726
727
728
729
730
731
732 @Parameter(property="doxygen.warnIfUndocumented", defaultValue="true")
733 private boolean warnIfUndocumented;
734
735
736
737
738
739
740
741
742 @Parameter(property="doxygen.warnIfDocError", defaultValue="true")
743 private boolean warnIfDocError;
744
745
746
747
748
749
750
751
752
753 @Parameter(property="doxygen.warnNoParamdoc", defaultValue="true")
754 private boolean warnNoParamdoc;
755
756
757
758
759
760
761
762
763
764
765 @Parameter(property="doxygen.warnFormat", defaultValue="\"$file:$line: $text\"")
766 private String warnFormat;
767
768
769
770
771
772
773
774 @Parameter(property="doxygen.warnLogfile")
775 private String warnLogfile;
776
777
778
779
780
781
782
783
784 @Parameter(property="doxygen.input", defaultValue="${project.build.sourceDirectory}")
785 private String input;
786
787
788
789
790
791
792
793
794
795 @Parameter(property="doxygen.inputEncoding", defaultValue="UTF-8")
796 private String inputEncoding;
797
798
799
800
801
802
803
804
805
806
807 @Parameter(property="doxygen.filePatterns", defaultValue="*.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90")
808 private String filePatterns;
809
810
811
812
813
814
815
816 @Parameter(property="doxygen.recursive", defaultValue="false")
817 private boolean recursive;
818
819
820
821
822
823
824
825
826 @Parameter(property="doxygen.exclude", defaultValue=".svn")
827 private String exclude;
828
829
830
831
832
833
834
835 @Parameter(property="doxygen.excludeSymlinks", defaultValue="false")
836 private boolean excludeSymlinks;
837
838
839
840
841
842
843
844
845
846 @Parameter(property="doxygen.excludePatterns")
847 private String excludePatterns;
848
849
850
851
852
853
854
855
856
857 @Parameter(property="doxygen.excludeSymbols")
858 private String excludeSymbols;
859
860
861
862
863
864
865
866 @Parameter(property="doxygen.examplePath")
867 private String examplePath;
868
869
870
871
872
873
874
875
876 @Parameter(property="doxygen.examplePatterns")
877 private String examplePatterns;
878
879
880
881
882
883
884
885
886 @Parameter(property="doxygen.exampleRecursive", defaultValue="false")
887 private boolean exampleRecursive;
888
889
890
891
892
893
894
895 @Parameter(property="doxygen.imagePath")
896 private String imagePath;
897
898
899
900
901
902
903
904
905
906
907
908 @Parameter(property="doxygen.inputFilter")
909 private String inputFilter;
910
911
912
913
914
915
916
917
918
919
920 @Parameter(property="doxygen.filterPatterns")
921 private String filterPatterns;
922
923
924
925
926
927
928
929 @Parameter(property="doxygen.filterSourceFiles", defaultValue="false")
930 private boolean filterSourceFiles;
931
932
933
934
935
936
937
938
939 @Parameter(property="doxygen.sourceBrowser", defaultValue="true")
940 private boolean sourceBrowser;
941
942
943
944
945
946
947 @Parameter(property="doxygen.inlineSources", defaultValue="false")
948 private boolean inlineSources;
949
950
951
952
953
954
955
956 @Parameter(property="doxygen.stripCodeComments", defaultValue="true")
957 private boolean stripCodeComments;
958
959
960
961
962
963
964 @Parameter(property="doxygen.referencedByRelation", defaultValue="false")
965 private boolean referencedByRelation;
966
967
968
969
970
971
972
973 @Parameter(property="doxygen.referencesRelation", defaultValue="false")
974 private boolean referencesRelation;
975
976
977
978
979
980
981
982
983 @Parameter(property="doxygen.referencesLinkSource", defaultValue="true")
984 private boolean referencesLinkSource;
985
986
987
988
989
990
991
992
993
994 @Parameter(property="doxygen.useHtags", defaultValue="false")
995 private boolean useHtags;
996
997
998
999
1000
1001
1002
1003 @Parameter(property="doxygen.verbatimHeaders", defaultValue="true")
1004 private boolean verbatimHeaders;
1005
1006
1007
1008
1009
1010
1011
1012 @Parameter(property="doxygen.alphabeticalIndex", defaultValue="true")
1013 private boolean alphabeticalIndex;
1014
1015
1016
1017
1018
1019
1020
1021 @Parameter(property="doxygen.colsInAlphaIndex", defaultValue="5")
1022 private Integer colsInAlphaIndex;
1023
1024
1025
1026
1027
1028
1029
1030
1031 @Parameter(property="doxygen.ignorePrefix")
1032 private String ignorePrefix;
1033
1034
1035
1036
1037
1038
1039 @Parameter(property="doxygen.generateHtml", defaultValue="true")
1040 private boolean generateHtml;
1041
1042
1043
1044
1045
1046
1047
1048 @Parameter(property="doxygen.htmlOutput", defaultValue="doxygen")
1049 private String htmlOutput;
1050
1051
1052
1053
1054
1055
1056
1057 @Parameter(property="doxygen.htmlFileExtension", defaultValue=".html")
1058 private String htmlFileExtension;
1059
1060
1061
1062
1063
1064
1065
1066 @Parameter(property="doxygen.htmlHeader")
1067 private String htmlHeader;
1068
1069
1070
1071
1072
1073
1074
1075 @Parameter(property="doxygen.htmlFooter")
1076 private String htmlFooter;
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087 @Parameter(property="doxygen.htmlStylesheet")
1088 private String htmlStylesheet;
1089
1090
1091
1092
1093
1094
1095
1096 @Parameter(property="doxygen.htmlAlignMembers", defaultValue="true")
1097 private boolean htmlAlignMembers;
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107 @Parameter(property="doxygen.htmlDynamicSections", defaultValue="true")
1108 private boolean htmlDynamicSections;
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123 @Parameter(property="doxygen.generateDocset", defaultValue="false")
1124 private boolean generateDocset;
1125
1126
1127
1128
1129
1130
1131
1132
1133 @Parameter(property="doxygen.docsetFeedname", defaultValue="\"Doxygen generated docs\"")
1134 private String docsetFeedname;
1135
1136
1137
1138
1139
1140
1141
1142
1143 @Parameter(property="doxygen.docsetBundleId", defaultValue="org.doxygen.Project")
1144 private String docsetBundleId;
1145
1146
1147
1148
1149
1150
1151
1152
1153 @Parameter(property="doxygen.generateHtmlhelp", defaultValue="false")
1154 private boolean generateHtmlhelp;
1155
1156
1157
1158
1159
1160
1161
1162
1163 @Parameter(property="doxygen.chmFile")
1164 private String chmFile;
1165
1166
1167
1168
1169
1170
1171
1172
1173 @Parameter(property="doxygen.hhcLocation")
1174 private String hhcLocation;
1175
1176
1177
1178
1179
1180
1181
1182 @Parameter(property="doxygen.generateChi", defaultValue="false")
1183 private boolean generateChi;
1184
1185
1186
1187
1188
1189
1190
1191 @Parameter(property="doxygen.chmIndexEncoding")
1192 private String chmIndexEncoding;
1193
1194
1195
1196
1197
1198
1199
1200 @Parameter(property="doxygen.binaryToc", defaultValue="false")
1201 private boolean binaryToc;
1202
1203
1204
1205
1206
1207
1208
1209 @Parameter(property="doxygen.tocExpand", defaultValue="false")
1210 private boolean tocExpand;
1211
1212
1213
1214
1215
1216
1217
1218
1219 @Parameter(property="doxygen.generateQhp", defaultValue="false")
1220 private boolean generateQhp;
1221
1222
1223
1224
1225
1226
1227
1228 @Parameter(property="doxygen.qchFile")
1229 private String qchFile;
1230
1231
1232
1233
1234
1235
1236
1237
1238 @Parameter(property="doxygen.qhpNamespace", defaultValue="org.doxygen.Project")
1239 private String qhpNamespace;
1240
1241
1242
1243
1244
1245
1246
1247
1248 @Parameter(property="doxygen.qhpVirtualFolder", defaultValue="doc")
1249 private String qhpVirtualFolder;
1250
1251
1252
1253
1254
1255
1256
1257 @Parameter(property="doxygen.qhgLocation")
1258 private String qhgLocation;
1259
1260
1261
1262
1263
1264
1265
1266 @Parameter(property="doxygen.disableIndex", defaultValue="false")
1267 private boolean disableIndex;
1268
1269
1270
1271
1272
1273
1274 @Parameter(property="doxygen.enumValuesPerLine", defaultValue="4")
1275 private Integer enumValuesPerLine;
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294 @Parameter(property="doxygen.generateTreeview", defaultValue="ALL")
1295 private String generateTreeview;
1296
1297
1298
1299
1300
1301
1302
1303 @Parameter(property="doxygen.treeviewWidth", defaultValue="250")
1304 private Integer treeviewWidth;
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314 @Parameter(property="doxygen.formulaFontsize", defaultValue="10")
1315 private Integer formulaFontsize;
1316
1317
1318
1319
1320
1321
1322 @Parameter(property="doxygen.generateLatex", defaultValue="false")
1323 private boolean generateLatex;
1324
1325
1326
1327
1328
1329
1330
1331 @Parameter(property="doxygen.latexOutput", defaultValue="latex")
1332 private String latexOutput;
1333
1334
1335
1336
1337
1338
1339
1340 @Parameter(property="doxygen.latexCmdName", defaultValue="latex")
1341 private String latexCmdName;
1342
1343
1344
1345
1346
1347
1348
1349 @Parameter(property="doxygen.makeindexCmdName", defaultValue="makeindex")
1350 private String makeindexCmdName;
1351
1352
1353
1354
1355
1356
1357
1358 @Parameter(property="doxygen.compactLatex", defaultValue="false")
1359 private boolean compactLatex;
1360
1361
1362
1363
1364
1365
1366
1367 @Parameter(property="doxygen.paperType", defaultValue="a4wide")
1368 private String paperType;
1369
1370
1371
1372
1373
1374
1375 @Parameter(property="doxygen.extraPackages")
1376 private String extraPackages;
1377
1378
1379
1380
1381
1382
1383
1384
1385 @Parameter(property="doxygen.latexHeader")
1386 private String latexHeader;
1387
1388
1389
1390
1391
1392
1393
1394
1395 @Parameter(property="doxygen.pdfHyperlinks", defaultValue="true")
1396 private boolean pdfHyperlinks;
1397
1398
1399
1400
1401
1402
1403
1404 @Parameter(property="doxygen.usePdflatex", defaultValue="true")
1405 private boolean usePdflatex;
1406
1407
1408
1409
1410
1411
1412
1413
1414 @Parameter(property="doxygen.latexBatchmode", defaultValue="false")
1415 private boolean latexBatchmode;
1416
1417
1418
1419
1420
1421
1422 @Parameter(property="doxygen.latexHideIndices", defaultValue="false")
1423 private boolean latexHideIndices;
1424
1425
1426
1427
1428
1429
1430
1431 @Parameter(property="doxygen.generateRtf", defaultValue="false")
1432 private boolean generateRtf;
1433
1434
1435
1436
1437
1438
1439
1440 @Parameter(property="doxygen.rtfOutput", defaultValue="rtf")
1441 private String rtfOutput;
1442
1443
1444
1445
1446
1447
1448
1449 @Parameter(property="doxygen.compactRtf", defaultValue="false")
1450 private boolean compactRtf;
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460 @Parameter(property="doxygen.rtfHyperlinks", defaultValue="false")
1461 private boolean rtfHyperlinks;
1462
1463
1464
1465
1466
1467
1468
1469 @Parameter(property="doxygen.rtfStylesheetFile")
1470 private String rtfStylesheetFile;
1471
1472
1473
1474
1475
1476
1477 @Parameter(property="doxygen.rtfExtensionsFile")
1478 private String rtfExtensionsFile;
1479
1480
1481
1482
1483
1484
1485 @Parameter(property="doxygen.generateMan", defaultValue="false")
1486 private boolean generateMan;
1487
1488
1489
1490
1491
1492
1493
1494 @Parameter(property="doxygen.manOutput", defaultValue="man")
1495 private String manOutput;
1496
1497
1498
1499
1500
1501
1502 @Parameter(property="doxygen.manExtension", defaultValue=".3")
1503 private String manExtension;
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513 @Parameter(property="doxygen.manLinks", defaultValue="false")
1514 private boolean manLinks;
1515
1516
1517
1518
1519
1520
1521 @Parameter(property="doxygen.generateXml", defaultValue="false")
1522 private boolean generateXml;
1523
1524
1525
1526
1527
1528
1529
1530 @Parameter(property="doxygen.xmlOutput", defaultValue="xml")
1531 private String xmlOutput;
1532
1533
1534
1535
1536
1537
1538 @Parameter(property="doxygen.xmlSchema")
1539 private String xmlSchema;
1540
1541
1542
1543
1544
1545
1546 @Parameter(property="doxygen.xmlDtd")
1547 private String xmlDtd;
1548
1549
1550
1551
1552
1553
1554
1555
1556 @Parameter(property="doxygen.xmlProgramlisting", defaultValue="true")
1557 private boolean xmlProgramlisting;
1558
1559
1560
1561
1562
1563
1564
1565
1566 @Parameter(property="doxygen.generateAutogenDef", defaultValue="false")
1567 private boolean generateAutogenDef;
1568
1569
1570
1571
1572
1573
1574
1575
1576 @Parameter(property="doxygen.generatePerlmod", defaultValue="false")
1577 private boolean generatePerlmod;
1578
1579
1580
1581
1582
1583
1584
1585 @Parameter(property="doxygen.perlmodLatex", defaultValue="false")
1586 private boolean perlmodLatex;
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596 @Parameter(property="doxygen.perlmodPretty", defaultValue="true")
1597 private boolean perlmodPretty;
1598
1599
1600
1601
1602
1603
1604
1605
1606 @Parameter(property="doxygen.perlmodMakevarPrefix")
1607 private String perlmodMakevarPrefix;
1608
1609
1610
1611
1612
1613
1614
1615 @Parameter(property="doxygen.enablePreprocessing", defaultValue="true")
1616 private boolean enablePreprocessing;
1617
1618
1619
1620
1621
1622
1623
1624
1625 @Parameter(property="doxygen.macroExpansion", defaultValue="false")
1626 private boolean macroExpansion;
1627
1628
1629
1630
1631
1632
1633
1634 @Parameter(property="doxygen.expandOnlyPredef", defaultValue="false")
1635 private boolean expandOnlyPredef;
1636
1637
1638
1639
1640
1641
1642 @Parameter(property="doxygen.searchIncludes", defaultValue="true")
1643 private boolean searchIncludes;
1644
1645
1646
1647
1648
1649
1650
1651 @Parameter(property="doxygen.includePath")
1652 private String includePath;
1653
1654
1655
1656
1657
1658
1659
1660
1661 @Parameter(property="doxygen.includeFilePatterns")
1662 private String includeFilePatterns;
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673 @Parameter(property="doxygen.predefined")
1674 private String predefined;
1675
1676
1677
1678
1679
1680
1681
1682
1683 @Parameter(property="doxygen.expandAsDefined")
1684 private String expandAsDefined;
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694 @Parameter(property="doxygen.skipFunctionMacros", defaultValue="true")
1695 private boolean skipFunctionMacros;
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711 @Parameter(property="doxygen.tagfiles")
1712 private String tagfiles;
1713
1714
1715
1716
1717
1718
1719 @Parameter(property="doxygen.generateTagfile")
1720 private String generateTagfile;
1721
1722
1723
1724
1725
1726
1727
1728 @Parameter(property="doxygen.allexternals", defaultValue="false")
1729 private boolean allexternals;
1730
1731
1732
1733
1734
1735
1736
1737 @Parameter(property="doxygen.externalGroups", defaultValue="true")
1738 private boolean externalGroups;
1739
1740
1741
1742
1743
1744
1745 @Parameter(property="doxygen.perlPath", defaultValue="/usr/bin/perl")
1746 private String perlPath;
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757 @Parameter(property="doxygen.classDiagrams", defaultValue="true")
1758 private boolean classDiagrams;
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769 @Parameter(property="doxygen.mscgenPath")
1770 private String mscgenPath;
1771
1772
1773
1774
1775
1776
1777
1778 @Parameter(property="doxygen.hideUndocRelations", defaultValue="true")
1779 private boolean hideUndocRelations;
1780
1781
1782
1783
1784
1785
1786
1787
1788 @Parameter(property="doxygen.haveDot", defaultValue="true")
1789 private boolean haveDot;
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802 @Parameter(property="doxygen.dotFontname", defaultValue="FreeSans")
1803 private String dotFontname;
1804
1805
1806
1807
1808
1809
1810 @Parameter(property="doxygen.dotFontsize", defaultValue="10")
1811 private Integer dotFontsize;
1812
1813
1814
1815
1816
1817
1818
1819
1820 @Parameter(property="doxygen.dotFontpath")
1821 private String dotFontpath;
1822
1823
1824
1825
1826
1827
1828
1829
1830 @Parameter(property="doxygen.classGraph", defaultValue="true")
1831 private boolean classGraph;
1832
1833
1834
1835
1836
1837
1838
1839
1840 @Parameter(property="doxygen.collaborationGraph", defaultValue="true")
1841 private boolean collaborationGraph;
1842
1843
1844
1845
1846
1847
1848 @Parameter(property="doxygen.groupGraphs", defaultValue="true")
1849 private boolean groupGraphs;
1850
1851
1852
1853
1854
1855
1856
1857 @Parameter(property="doxygen.umlLook", defaultValue="false")
1858 private boolean umlLook;
1859
1860
1861
1862
1863
1864
1865 @Parameter(property="doxygen.templateRelations", defaultValue="false")
1866 private boolean templateRelations;
1867
1868
1869
1870
1871
1872
1873
1874
1875 @Parameter(property="doxygen.includeGraph", defaultValue="true")
1876 private boolean includeGraph;
1877
1878
1879
1880
1881
1882
1883
1884
1885 @Parameter(property="doxygen.includedByGraph", defaultValue="true")
1886 private boolean includedByGraph;
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896 @Parameter(property="doxygen.callGraph", defaultValue="false")
1897 private boolean callGraph;
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907 @Parameter(property="doxygen.callerGraph", defaultValue="false")
1908 private boolean callerGraph;
1909
1910
1911
1912
1913
1914
1915 @Parameter(property="doxygen.graphicalHierarchy", defaultValue="true")
1916 private boolean graphicalHierarchy;
1917
1918
1919
1920
1921
1922
1923
1924
1925 @Parameter(property="doxygen.directoryGraph", defaultValue="true")
1926 private boolean directoryGraph;
1927
1928
1929
1930
1931
1932
1933
1934 @Parameter(property="doxygen.dotImageFormat", defaultValue="png")
1935 private String dotImageFormat;
1936
1937
1938
1939
1940
1941
1942
1943 @Parameter(property="doxygen.dotPath", defaultValue="/usr/bin")
1944 private String dotPath;
1945
1946
1947
1948
1949
1950
1951
1952 @Parameter(property="doxygen.dotfileDirs")
1953 private String dotfileDirs;
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966 @Parameter(property="doxygen.dotGraphMaxNodes", defaultValue="50")
1967 private Integer dotGraphMaxNodes;
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980 @Parameter(property="doxygen.maxDotGraphDepth", defaultValue="0")
1981 private Integer maxDotGraphDepth;
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991 @Parameter(property="doxygen.dotTransparent", defaultValue="true")
1992 private boolean dotTransparent;
1993
1994
1995
1996
1997
1998
1999
2000
2001 @Parameter(property="doxygen.dotMultiTargets", defaultValue="true")
2002 private boolean dotMultiTargets;
2003
2004
2005
2006
2007
2008
2009
2010 @Parameter(property="doxygen.generateLegend", defaultValue="true")
2011 private boolean generateLegend;
2012
2013
2014
2015
2016
2017
2018 @Parameter(property="doxygen.dotCleanup", defaultValue="true")
2019 private boolean dotCleanup;
2020
2021
2022
2023
2024
2025
2026 @Parameter(property="doxygen.searchengine", defaultValue="false")
2027 private boolean searchengine;
2028
2029 public File getConfigurationFile() {
2030 return configurationFile;
2031 }
2032
2033 public void setConfigurationFile(File configurationFile) {
2034 this.configurationFile = configurationFile;
2035 }
2036
2037 public String getDoxyfileEncoding() {
2038 return doxyfileEncoding;
2039 }
2040
2041 public void setDoxyfileEncoding(String doxyfileEncoding) {
2042 this.doxyfileEncoding = doxyfileEncoding;
2043 }
2044
2045 public String getProjectName() {
2046 return projectName;
2047 }
2048
2049 public void setProjectName(String projectName) {
2050 this.projectName = projectName;
2051 }
2052
2053 public String getProjectNumber() {
2054 return projectNumber;
2055 }
2056
2057 public void setProjectNumber(String projectNumber) {
2058 this.projectNumber = projectNumber;
2059 }
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069 public boolean isCreateSubdirs() {
2070 return createSubdirs;
2071 }
2072
2073 public void setCreateSubdirs(boolean createSubdirs) {
2074 this.createSubdirs = createSubdirs;
2075 }
2076
2077 public String getOutputLanguage() {
2078 return outputLanguage;
2079 }
2080
2081 public void setOutputLanguage(String outputLanguage) {
2082 this.outputLanguage = outputLanguage;
2083 }
2084
2085 public boolean isBriefMemberDesc() {
2086 return briefMemberDesc;
2087 }
2088
2089 public void setBriefMemberDesc(boolean briefMemberDesc) {
2090 this.briefMemberDesc = briefMemberDesc;
2091 }
2092
2093 public boolean isRepeatBrief() {
2094 return repeatBrief;
2095 }
2096
2097 public void setRepeatBrief(boolean repeatBrief) {
2098 this.repeatBrief = repeatBrief;
2099 }
2100
2101 public String getAbbreviateBrief() {
2102 return abbreviateBrief;
2103 }
2104
2105 public void setAbbreviateBrief(String abbreviateBrief) {
2106 this.abbreviateBrief = abbreviateBrief;
2107 }
2108
2109 public boolean isAlwaysDetailedSec() {
2110 return alwaysDetailedSec;
2111 }
2112
2113 public void setAlwaysDetailedSec(boolean alwaysDetailedSec) {
2114 this.alwaysDetailedSec = alwaysDetailedSec;
2115 }
2116
2117 public boolean isInlineInheritedMemb() {
2118 return inlineInheritedMemb;
2119 }
2120
2121 public void setInlineInheritedMemb(boolean inlineInheritedMemb) {
2122 this.inlineInheritedMemb = inlineInheritedMemb;
2123 }
2124
2125 public boolean isFullPathNames() {
2126 return fullPathNames;
2127 }
2128
2129 public void setFullPathNames(boolean fullPathNames) {
2130 this.fullPathNames = fullPathNames;
2131 }
2132
2133 public String getStripFromPath() {
2134 return stripFromPath;
2135 }
2136
2137 public void setStripFromPath(String stripFromPath) {
2138 this.stripFromPath = stripFromPath;
2139 }
2140
2141 public String getStripFromIncPath() {
2142 return stripFromIncPath;
2143 }
2144
2145 public void setStripFromIncPath(String stripFromIncPath) {
2146 this.stripFromIncPath = stripFromIncPath;
2147 }
2148
2149 public boolean isShortNames() {
2150 return shortNames;
2151 }
2152
2153 public void setShortNames(boolean shortNames) {
2154 this.shortNames = shortNames;
2155 }
2156
2157 public boolean isJavadocAutobrief() {
2158 return javadocAutobrief;
2159 }
2160
2161 public void setJavadocAutobrief(boolean javadocAutobrief) {
2162 this.javadocAutobrief = javadocAutobrief;
2163 }
2164
2165 public boolean isQtAutobrief() {
2166 return qtAutobrief;
2167 }
2168
2169 public void setQtAutobrief(boolean qtAutobrief) {
2170 this.qtAutobrief = qtAutobrief;
2171 }
2172
2173 public boolean isMultilineCppIsBrief() {
2174 return multilineCppIsBrief;
2175 }
2176
2177 public void setMultilineCppIsBrief(boolean multilineCppIsBrief) {
2178 this.multilineCppIsBrief = multilineCppIsBrief;
2179 }
2180
2181 public boolean isInheritDocs() {
2182 return inheritDocs;
2183 }
2184
2185 public void setInheritDocs(boolean inheritDocs) {
2186 this.inheritDocs = inheritDocs;
2187 }
2188
2189 public boolean isSeparateMemberPages() {
2190 return separateMemberPages;
2191 }
2192
2193 public void setSeparateMemberPages(boolean separateMemberPages) {
2194 this.separateMemberPages = separateMemberPages;
2195 }
2196
2197 public Integer getTabSize() {
2198 return tabSize;
2199 }
2200
2201 public void setTabSize(Integer tabSize) {
2202 this.tabSize = tabSize;
2203 }
2204
2205 public String getAliases() {
2206 return aliases;
2207 }
2208
2209 public void setAliases(String aliases) {
2210 this.aliases = aliases;
2211 }
2212
2213 public boolean isOptimizeOutputForC() {
2214 return optimizeOutputForC;
2215 }
2216
2217 public void setOptimizeOutputForC(boolean optimizeOutputForC) {
2218 this.optimizeOutputForC = optimizeOutputForC;
2219 }
2220
2221 public boolean isOptimizeOutputJava() {
2222 return optimizeOutputJava;
2223 }
2224
2225 public void setOptimizeOutputJava(boolean optimizeOutputJava) {
2226 this.optimizeOutputJava = optimizeOutputJava;
2227 }
2228
2229 public boolean isOptimizeForFortran() {
2230 return optimizeForFortran;
2231 }
2232
2233 public void setOptimizeForFortran(boolean optimizeForFortran) {
2234 this.optimizeForFortran = optimizeForFortran;
2235 }
2236
2237 public boolean isOptimizeOutputVhdl() {
2238 return optimizeOutputVhdl;
2239 }
2240
2241 public void setOptimizeOutputVhdl(boolean optimizeOutputVhdl) {
2242 this.optimizeOutputVhdl = optimizeOutputVhdl;
2243 }
2244
2245 public boolean isBuiltinStlSupport() {
2246 return builtinStlSupport;
2247 }
2248
2249 public void setBuiltinStlSupport(boolean builtinStlSupport) {
2250 this.builtinStlSupport = builtinStlSupport;
2251 }
2252
2253 public boolean isCppCliSupport() {
2254 return cppCliSupport;
2255 }
2256
2257 public void setCppCliSupport(boolean cppCliSupport) {
2258 this.cppCliSupport = cppCliSupport;
2259 }
2260
2261 public boolean isSipSupport() {
2262 return sipSupport;
2263 }
2264
2265 public void setSipSupport(boolean sipSupport) {
2266 this.sipSupport = sipSupport;
2267 }
2268
2269 public boolean isIdlPropertySupport() {
2270 return idlPropertySupport;
2271 }
2272
2273 public void setIdlPropertySupport(boolean idlPropertySupport) {
2274 this.idlPropertySupport = idlPropertySupport;
2275 }
2276
2277 public boolean isDistributeGroupDoc() {
2278 return distributeGroupDoc;
2279 }
2280
2281 public void setDistributeGroupDoc(boolean distributeGroupDoc) {
2282 this.distributeGroupDoc = distributeGroupDoc;
2283 }
2284
2285 public boolean isSubgrouping() {
2286 return subgrouping;
2287 }
2288
2289 public void setSubgrouping(boolean subgrouping) {
2290 this.subgrouping = subgrouping;
2291 }
2292
2293 public boolean isTypedefHidesStruct() {
2294 return typedefHidesStruct;
2295 }
2296
2297 public void setTypedefHidesStruct(boolean typedefHidesStruct) {
2298 this.typedefHidesStruct = typedefHidesStruct;
2299 }
2300
2301 public Integer getSymbolCacheSize() {
2302 return symbolCacheSize;
2303 }
2304
2305 public void setSymbolCacheSize(Integer symbolCacheSize) {
2306 this.symbolCacheSize = symbolCacheSize;
2307 }
2308
2309 public boolean isExtractAll() {
2310 return extractAll;
2311 }
2312
2313 public void setExtractAll(boolean extractAll) {
2314 this.extractAll = extractAll;
2315 }
2316
2317 public boolean isExtractPrivate() {
2318 return extractPrivate;
2319 }
2320
2321 public void setExtractPrivate(boolean extractPrivate) {
2322 this.extractPrivate = extractPrivate;
2323 }
2324
2325 public boolean isExtractStatic() {
2326 return extractStatic;
2327 }
2328
2329 public void setExtractStatic(boolean extractStatic) {
2330 this.extractStatic = extractStatic;
2331 }
2332
2333 public boolean isExtractLocalClasses() {
2334 return extractLocalClasses;
2335 }
2336
2337 public void setExtractLocalClasses(boolean extractLocalClasses) {
2338 this.extractLocalClasses = extractLocalClasses;
2339 }
2340
2341 public boolean isExtractLocalMethods() {
2342 return extractLocalMethods;
2343 }
2344
2345 public void setExtractLocalMethods(boolean extractLocalMethods) {
2346 this.extractLocalMethods = extractLocalMethods;
2347 }
2348
2349 public boolean isExtractAnonNspaces() {
2350 return extractAnonNspaces;
2351 }
2352
2353 public void setExtractAnonNspaces(boolean extractAnonNspaces) {
2354 this.extractAnonNspaces = extractAnonNspaces;
2355 }
2356
2357 public boolean isHideUndocMembers() {
2358 return hideUndocMembers;
2359 }
2360
2361 public void setHideUndocMembers(boolean hideUndocMembers) {
2362 this.hideUndocMembers = hideUndocMembers;
2363 }
2364
2365 public boolean isHideUndocClasses() {
2366 return hideUndocClasses;
2367 }
2368
2369 public void setHideUndocClasses(boolean hideUndocClasses) {
2370 this.hideUndocClasses = hideUndocClasses;
2371 }
2372
2373 public boolean isHideFriendCompounds() {
2374 return hideFriendCompounds;
2375 }
2376
2377 public void setHideFriendCompounds(boolean hideFriendCompounds) {
2378 this.hideFriendCompounds = hideFriendCompounds;
2379 }
2380
2381 public boolean isHideInBodyDocs() {
2382 return hideInBodyDocs;
2383 }
2384
2385 public void setHideInBodyDocs(boolean hideInBodyDocs) {
2386 this.hideInBodyDocs = hideInBodyDocs;
2387 }
2388
2389 public boolean isInternalDocs() {
2390 return internalDocs;
2391 }
2392
2393 public void setInternalDocs(boolean internalDocs) {
2394 this.internalDocs = internalDocs;
2395 }
2396
2397 public boolean isCaseSenseNames() {
2398 return caseSenseNames;
2399 }
2400
2401 public void setCaseSenseNames(boolean caseSenseNames) {
2402 this.caseSenseNames = caseSenseNames;
2403 }
2404
2405 public boolean isHideScopeNames() {
2406 return hideScopeNames;
2407 }
2408
2409 public void setHideScopeNames(boolean hideScopeNames) {
2410 this.hideScopeNames = hideScopeNames;
2411 }
2412
2413 public boolean isShowIncludeFiles() {
2414 return showIncludeFiles;
2415 }
2416
2417 public void setShowIncludeFiles(boolean showIncludeFiles) {
2418 this.showIncludeFiles = showIncludeFiles;
2419 }
2420
2421 public boolean isInlineInfo() {
2422 return inlineInfo;
2423 }
2424
2425 public void setInlineInfo(boolean inlineInfo) {
2426 this.inlineInfo = inlineInfo;
2427 }
2428
2429 public boolean isSortMemberDocs() {
2430 return sortMemberDocs;
2431 }
2432
2433 public void setSortMemberDocs(boolean sortMemberDocs) {
2434 this.sortMemberDocs = sortMemberDocs;
2435 }
2436
2437 public boolean isSortBriefDocs() {
2438 return sortBriefDocs;
2439 }
2440
2441 public void setSortBriefDocs(boolean sortBriefDocs) {
2442 this.sortBriefDocs = sortBriefDocs;
2443 }
2444
2445 public boolean isSortGroupNames() {
2446 return sortGroupNames;
2447 }
2448
2449 public void setSortGroupNames(boolean sortGroupNames) {
2450 this.sortGroupNames = sortGroupNames;
2451 }
2452
2453 public boolean isSortByScopeName() {
2454 return sortByScopeName;
2455 }
2456
2457 public void setSortByScopeName(boolean sortByScopeName) {
2458 this.sortByScopeName = sortByScopeName;
2459 }
2460
2461 public boolean isGenerateTodolist() {
2462 return generateTodolist;
2463 }
2464
2465 public void setGenerateTodolist(boolean generateTodolist) {
2466 this.generateTodolist = generateTodolist;
2467 }
2468
2469 public boolean isGenerateTestlist() {
2470 return generateTestlist;
2471 }
2472
2473 public void setGenerateTestlist(boolean generateTestlist) {
2474 this.generateTestlist = generateTestlist;
2475 }
2476
2477 public boolean isGenerateBuglist() {
2478 return generateBuglist;
2479 }
2480
2481 public void setGenerateBuglist(boolean generateBuglist) {
2482 this.generateBuglist = generateBuglist;
2483 }
2484
2485 public boolean isGenerateDeprecatedlist() {
2486 return generateDeprecatedlist;
2487 }
2488
2489 public void setGenerateDeprecatedlist(boolean generateDeprecatedlist) {
2490 this.generateDeprecatedlist = generateDeprecatedlist;
2491 }
2492
2493 public String getEnabledSections() {
2494 return enabledSections;
2495 }
2496
2497 public void setEnabledSections(String enabledSections) {
2498 this.enabledSections = enabledSections;
2499 }
2500
2501 public Integer getMaxInitializerLines() {
2502 return maxInitializerLines;
2503 }
2504
2505 public void setMaxInitializerLines(Integer maxInitializerLines) {
2506 this.maxInitializerLines = maxInitializerLines;
2507 }
2508
2509 public boolean isShowUsedFiles() {
2510 return showUsedFiles;
2511 }
2512
2513 public void setShowUsedFiles(boolean showUsedFiles) {
2514 this.showUsedFiles = showUsedFiles;
2515 }
2516
2517 public boolean isShowDirectories() {
2518 return showDirectories;
2519 }
2520
2521 public void setShowDirectories(boolean showDirectories) {
2522 this.showDirectories = showDirectories;
2523 }
2524
2525 public boolean isShowFiles() {
2526 return showFiles;
2527 }
2528
2529 public void setShowFiles(boolean showFiles) {
2530 this.showFiles = showFiles;
2531 }
2532
2533 public boolean isShowNamespaces() {
2534 return showNamespaces;
2535 }
2536
2537 public void setShowNamespaces(boolean showNamespaces) {
2538 this.showNamespaces = showNamespaces;
2539 }
2540
2541 public String getFileVersionFilter() {
2542 return fileVersionFilter;
2543 }
2544
2545 public void setFileVersionFilter(String fileVersionFilter) {
2546 this.fileVersionFilter = fileVersionFilter;
2547 }
2548
2549 public String getLayoutFile() {
2550 return layoutFile;
2551 }
2552
2553 public void setLayoutFile(String layoutFile) {
2554 this.layoutFile = layoutFile;
2555 }
2556
2557 public boolean isQuiet() {
2558 return quiet;
2559 }
2560
2561 public void setQuiet(boolean quiet) {
2562 this.quiet = quiet;
2563 }
2564
2565 public boolean isWarnings() {
2566 return warnings;
2567 }
2568
2569 public void setWarnings(boolean warnings) {
2570 this.warnings = warnings;
2571 }
2572
2573 public boolean isWarnIfUndocumented() {
2574 return warnIfUndocumented;
2575 }
2576
2577 public void setWarnIfUndocumented(boolean warnIfUndocumented) {
2578 this.warnIfUndocumented = warnIfUndocumented;
2579 }
2580
2581 public boolean isWarnIfDocError() {
2582 return warnIfDocError;
2583 }
2584
2585 public void setWarnIfDocError(boolean warnIfDocError) {
2586 this.warnIfDocError = warnIfDocError;
2587 }
2588
2589 public boolean isWarnNoParamdoc() {
2590 return warnNoParamdoc;
2591 }
2592
2593 public void setWarnNoParamdoc(boolean warnNoParamdoc) {
2594 this.warnNoParamdoc = warnNoParamdoc;
2595 }
2596
2597 public String getWarnFormat() {
2598 return warnFormat;
2599 }
2600
2601 public void setWarnFormat(String warnFormat) {
2602 this.warnFormat = warnFormat;
2603 }
2604
2605 public String getWarnLogfile() {
2606 return warnLogfile;
2607 }
2608
2609 public void setWarnLogfile(String warnLogfile) {
2610 this.warnLogfile = warnLogfile;
2611 }
2612
2613 public String getInput() {
2614 return input;
2615 }
2616
2617 public void setInput(String input) {
2618 this.input = input;
2619 }
2620
2621 public String getInputEncoding() {
2622 return inputEncoding;
2623 }
2624
2625 public void setInputEncoding(String inputEncoding) {
2626 this.inputEncoding = inputEncoding;
2627 }
2628
2629 public String getFilePatterns() {
2630 return filePatterns;
2631 }
2632
2633 public void setFilePatterns(String filePatterns) {
2634 this.filePatterns = filePatterns;
2635 }
2636
2637 public boolean isRecursive() {
2638 return recursive;
2639 }
2640
2641 public void setRecursive(boolean recursive) {
2642 this.recursive = recursive;
2643 }
2644
2645 public String getExclude() {
2646 return exclude;
2647 }
2648
2649 public void setExclude(String exclude) {
2650 this.exclude = exclude;
2651 }
2652
2653 public boolean isExcludeSymlinks() {
2654 return excludeSymlinks;
2655 }
2656
2657 public void setExcludeSymlinks(boolean excludeSymlinks) {
2658 this.excludeSymlinks = excludeSymlinks;
2659 }
2660
2661 public String getExcludePatterns() {
2662 return excludePatterns;
2663 }
2664
2665 public void setExcludePatterns(String excludePatterns) {
2666 this.excludePatterns = excludePatterns;
2667 }
2668
2669 public String getExcludeSymbols() {
2670 return excludeSymbols;
2671 }
2672
2673 public void setExcludeSymbols(String excludeSymbols) {
2674 this.excludeSymbols = excludeSymbols;
2675 }
2676
2677 public String getExamplePath() {
2678 return examplePath;
2679 }
2680
2681 public void setExamplePath(String examplePath) {
2682 this.examplePath = examplePath;
2683 }
2684
2685 public String getExamplePatterns() {
2686 return examplePatterns;
2687 }
2688
2689 public void setExamplePatterns(String examplePatterns) {
2690 this.examplePatterns = examplePatterns;
2691 }
2692
2693 public boolean isExampleRecursive() {
2694 return exampleRecursive;
2695 }
2696
2697 public void setExampleRecursive(boolean exampleRecursive) {
2698 this.exampleRecursive = exampleRecursive;
2699 }
2700
2701 public String getImagePath() {
2702 return imagePath;
2703 }
2704
2705 public void setImagePath(String imagePath) {
2706 this.imagePath = imagePath;
2707 }
2708
2709 public String getInputFilter() {
2710 return inputFilter;
2711 }
2712
2713 public void setInputFilter(String inputFilter) {
2714 this.inputFilter = inputFilter;
2715 }
2716
2717 public String getFilterPatterns() {
2718 return filterPatterns;
2719 }
2720
2721 public void setFilterPatterns(String filterPatterns) {
2722 this.filterPatterns = filterPatterns;
2723 }
2724
2725 public boolean isFilterSourceFiles() {
2726 return filterSourceFiles;
2727 }
2728
2729 public void setFilterSourceFiles(boolean filterSourceFiles) {
2730 this.filterSourceFiles = filterSourceFiles;
2731 }
2732
2733 public boolean isSourceBrowser() {
2734 return sourceBrowser;
2735 }
2736
2737 public void setSourceBrowser(boolean sourceBrowser) {
2738 this.sourceBrowser = sourceBrowser;
2739 }
2740
2741 public boolean isInlineSources() {
2742 return inlineSources;
2743 }
2744
2745 public void setInlineSources(boolean inlineSources) {
2746 this.inlineSources = inlineSources;
2747 }
2748
2749 public boolean isStripCodeComments() {
2750 return stripCodeComments;
2751 }
2752
2753 public void setStripCodeComments(boolean stripCodeComments) {
2754 this.stripCodeComments = stripCodeComments;
2755 }
2756
2757 public boolean isReferencedByRelation() {
2758 return referencedByRelation;
2759 }
2760
2761 public void setReferencedByRelation(boolean referencedByRelation) {
2762 this.referencedByRelation = referencedByRelation;
2763 }
2764
2765 public boolean isReferencesRelation() {
2766 return referencesRelation;
2767 }
2768
2769 public void setReferencesRelation(boolean referencesRelation) {
2770 this.referencesRelation = referencesRelation;
2771 }
2772
2773 public boolean isReferencesLinkSource() {
2774 return referencesLinkSource;
2775 }
2776
2777 public void setReferencesLinkSource(boolean referencesLinkSource) {
2778 this.referencesLinkSource = referencesLinkSource;
2779 }
2780
2781 public boolean isUseHtags() {
2782 return useHtags;
2783 }
2784
2785 public void setUseHtags(boolean useHtags) {
2786 this.useHtags = useHtags;
2787 }
2788
2789 public boolean isVerbatimHeaders() {
2790 return verbatimHeaders;
2791 }
2792
2793 public void setVerbatimHeaders(boolean verbatimHeaders) {
2794 this.verbatimHeaders = verbatimHeaders;
2795 }
2796
2797 public boolean isAlphabeticalIndex() {
2798 return alphabeticalIndex;
2799 }
2800
2801 public void setAlphabeticalIndex(boolean alphabeticalIndex) {
2802 this.alphabeticalIndex = alphabeticalIndex;
2803 }
2804
2805 public Integer getColsInAlphaIndex() {
2806 return colsInAlphaIndex;
2807 }
2808
2809 public void setColsInAlphaIndex(Integer colsInAlphaIndex) {
2810 this.colsInAlphaIndex = colsInAlphaIndex;
2811 }
2812
2813 public String getIgnorePrefix() {
2814 return ignorePrefix;
2815 }
2816
2817 public void setIgnorePrefix(String ignorePrefix) {
2818 this.ignorePrefix = ignorePrefix;
2819 }
2820
2821 public boolean isGenerateHtml() {
2822 return generateHtml;
2823 }
2824
2825 public void setGenerateHtml(boolean generateHtml) {
2826 this.generateHtml = generateHtml;
2827 }
2828
2829 public String getHtmlOutput() {
2830 return htmlOutput;
2831 }
2832
2833 public void setHtmlOutput(String htmlOutput) {
2834 this.htmlOutput = htmlOutput;
2835 }
2836
2837 public String getHtmlFileExtension() {
2838 return htmlFileExtension;
2839 }
2840
2841 public void setHtmlFileExtension(String htmlFileExtension) {
2842 this.htmlFileExtension = htmlFileExtension;
2843 }
2844
2845 public String getHtmlHeader() {
2846 return htmlHeader;
2847 }
2848
2849 public void setHtmlHeader(String htmlHeader) {
2850 this.htmlHeader = htmlHeader;
2851 }
2852
2853 public String getHtmlFooter() {
2854 return htmlFooter;
2855 }
2856
2857 public void setHtmlFooter(String htmlFooter) {
2858 this.htmlFooter = htmlFooter;
2859 }
2860
2861 public String getHtmlStylesheet() {
2862 return htmlStylesheet;
2863 }
2864
2865 public void setHtmlStylesheet(String htmlStylesheet) {
2866 this.htmlStylesheet = htmlStylesheet;
2867 }
2868
2869 public boolean isHtmlAlignMembers() {
2870 return htmlAlignMembers;
2871 }
2872
2873 public void setHtmlAlignMembers(boolean htmlAlignMembers) {
2874 this.htmlAlignMembers = htmlAlignMembers;
2875 }
2876
2877 public boolean isHtmlDynamicSections() {
2878 return htmlDynamicSections;
2879 }
2880
2881 public void setHtmlDynamicSections(boolean htmlDynamicSections) {
2882 this.htmlDynamicSections = htmlDynamicSections;
2883 }
2884
2885 public boolean isGenerateDocset() {
2886 return generateDocset;
2887 }
2888
2889 public void setGenerateDocset(boolean generateDocset) {
2890 this.generateDocset = generateDocset;
2891 }
2892
2893 public String getDocsetFeedname() {
2894 return docsetFeedname;
2895 }
2896
2897 public void setDocsetFeedname(String docsetFeedname) {
2898 this.docsetFeedname = docsetFeedname;
2899 }
2900
2901 public String getDocsetBundleId() {
2902 return docsetBundleId;
2903 }
2904
2905 public void setDocsetBundleId(String docsetBundleId) {
2906 this.docsetBundleId = docsetBundleId;
2907 }
2908
2909 public boolean isGenerateHtmlhelp() {
2910 return generateHtmlhelp;
2911 }
2912
2913 public void setGenerateHtmlhelp(boolean generateHtmlhelp) {
2914 this.generateHtmlhelp = generateHtmlhelp;
2915 }
2916
2917 public String getChmFile() {
2918 return chmFile;
2919 }
2920
2921 public void setChmFile(String chmFile) {
2922 this.chmFile = chmFile;
2923 }
2924
2925 public String getHhcLocation() {
2926 return hhcLocation;
2927 }
2928
2929 public void setHhcLocation(String hhcLocation) {
2930 this.hhcLocation = hhcLocation;
2931 }
2932
2933 public boolean isGenerateChi() {
2934 return generateChi;
2935 }
2936
2937 public void setGenerateChi(boolean generateChi) {
2938 this.generateChi = generateChi;
2939 }
2940
2941 public String getChmIndexEncoding() {
2942 return chmIndexEncoding;
2943 }
2944
2945 public void setChmIndexEncoding(String chmIndexEncoding) {
2946 this.chmIndexEncoding = chmIndexEncoding;
2947 }
2948
2949 public boolean isBinaryToc() {
2950 return binaryToc;
2951 }
2952
2953 public void setBinaryToc(boolean binaryToc) {
2954 this.binaryToc = binaryToc;
2955 }
2956
2957 public boolean isTocExpand() {
2958 return tocExpand;
2959 }
2960
2961 public void setTocExpand(boolean tocExpand) {
2962 this.tocExpand = tocExpand;
2963 }
2964
2965 public boolean isGenerateQhp() {
2966 return generateQhp;
2967 }
2968
2969 public void setGenerateQhp(boolean generateQhp) {
2970 this.generateQhp = generateQhp;
2971 }
2972
2973 public String getQchFile() {
2974 return qchFile;
2975 }
2976
2977 public void setQchFile(String qchFile) {
2978 this.qchFile = qchFile;
2979 }
2980
2981 public String getQhpNamespace() {
2982 return qhpNamespace;
2983 }
2984
2985 public void setQhpNamespace(String qhpNamespace) {
2986 this.qhpNamespace = qhpNamespace;
2987 }
2988
2989 public String getQhpVirtualFolder() {
2990 return qhpVirtualFolder;
2991 }
2992
2993 public void setQhpVirtualFolder(String qhpVirtualFolder) {
2994 this.qhpVirtualFolder = qhpVirtualFolder;
2995 }
2996
2997 public String getQhgLocation() {
2998 return qhgLocation;
2999 }
3000
3001 public void setQhgLocation(String qhgLocation) {
3002 this.qhgLocation = qhgLocation;
3003 }
3004
3005 public boolean isDisableIndex() {
3006 return disableIndex;
3007 }
3008
3009 public void setDisableIndex(boolean disableIndex) {
3010 this.disableIndex = disableIndex;
3011 }
3012
3013 public Integer getEnumValuesPerLine() {
3014 return enumValuesPerLine;
3015 }
3016
3017 public void setEnumValuesPerLine(Integer enumValuesPerLine) {
3018 this.enumValuesPerLine = enumValuesPerLine;
3019 }
3020
3021 public String getGenerateTreeview() {
3022 return generateTreeview;
3023 }
3024
3025 public void setGenerateTreeview(String generateTreeview) {
3026 this.generateTreeview = generateTreeview;
3027 }
3028
3029 public Integer getTreeviewWidth() {
3030 return treeviewWidth;
3031 }
3032
3033 public void setTreeviewWidth(Integer treeviewWidth) {
3034 this.treeviewWidth = treeviewWidth;
3035 }
3036
3037 public Integer getFormulaFontsize() {
3038 return formulaFontsize;
3039 }
3040
3041 public void setFormulaFontsize(Integer formulaFontsize) {
3042 this.formulaFontsize = formulaFontsize;
3043 }
3044
3045 public boolean isGenerateLatex() {
3046 return generateLatex;
3047 }
3048
3049 public void setGenerateLatex(boolean generateLatex) {
3050 this.generateLatex = generateLatex;
3051 }
3052
3053 public String getLatexOutput() {
3054 return latexOutput;
3055 }
3056
3057 public void setLatexOutput(String latexOutput) {
3058 this.latexOutput = latexOutput;
3059 }
3060
3061 public String getLatexCmdName() {
3062 return latexCmdName;
3063 }
3064
3065 public void setLatexCmdName(String latexCmdName) {
3066 this.latexCmdName = latexCmdName;
3067 }
3068
3069 public String getMakeindexCmdName() {
3070 return makeindexCmdName;
3071 }
3072
3073 public void setMakeindexCmdName(String makeindexCmdName) {
3074 this.makeindexCmdName = makeindexCmdName;
3075 }
3076
3077 public boolean isCompactLatex() {
3078 return compactLatex;
3079 }
3080
3081 public void setCompactLatex(boolean compactLatex) {
3082 this.compactLatex = compactLatex;
3083 }
3084
3085 public String getPaperType() {
3086 return paperType;
3087 }
3088
3089 public void setPaperType(String paperType) {
3090 this.paperType = paperType;
3091 }
3092
3093 public String getExtraPackages() {
3094 return extraPackages;
3095 }
3096
3097 public void setExtraPackages(String extraPackages) {
3098 this.extraPackages = extraPackages;
3099 }
3100
3101 public String getLatexHeader() {
3102 return latexHeader;
3103 }
3104
3105 public void setLatexHeader(String latexHeader) {
3106 this.latexHeader = latexHeader;
3107 }
3108
3109 public boolean isPdfHyperlinks() {
3110 return pdfHyperlinks;
3111 }
3112
3113 public void setPdfHyperlinks(boolean pdfHyperlinks) {
3114 this.pdfHyperlinks = pdfHyperlinks;
3115 }
3116
3117 public boolean isUsePdflatex() {
3118 return usePdflatex;
3119 }
3120
3121 public void setUsePdflatex(boolean usePdflatex) {
3122 this.usePdflatex = usePdflatex;
3123 }
3124
3125 public boolean isLatexBatchmode() {
3126 return latexBatchmode;
3127 }
3128
3129 public void setLatexBatchmode(boolean latexBatchmode) {
3130 this.latexBatchmode = latexBatchmode;
3131 }
3132
3133 public boolean isLatexHideIndices() {
3134 return latexHideIndices;
3135 }
3136
3137 public void setLatexHideIndices(boolean latexHideIndices) {
3138 this.latexHideIndices = latexHideIndices;
3139 }
3140
3141 public boolean isGenerateRtf() {
3142 return generateRtf;
3143 }
3144
3145 public void setGenerateRtf(boolean generateRtf) {
3146 this.generateRtf = generateRtf;
3147 }
3148
3149 public String getRtfOutput() {
3150 return rtfOutput;
3151 }
3152
3153 public void setRtfOutput(String rtfOutput) {
3154 this.rtfOutput = rtfOutput;
3155 }
3156
3157 public boolean isCompactRtf() {
3158 return compactRtf;
3159 }
3160
3161 public void setCompactRtf(boolean compactRtf) {
3162 this.compactRtf = compactRtf;
3163 }
3164
3165 public boolean isRtfHyperlinks() {
3166 return rtfHyperlinks;
3167 }
3168
3169 public void setRtfHyperlinks(boolean rtfHyperlinks) {
3170 this.rtfHyperlinks = rtfHyperlinks;
3171 }
3172
3173 public String getRtfStylesheetFile() {
3174 return rtfStylesheetFile;
3175 }
3176
3177 public void setRtfStylesheetFile(String rtfStylesheetFile) {
3178 this.rtfStylesheetFile = rtfStylesheetFile;
3179 }
3180
3181 public String getRtfExtensionsFile() {
3182 return rtfExtensionsFile;
3183 }
3184
3185 public void setRtfExtensionsFile(String rtfExtensionsFile) {
3186 this.rtfExtensionsFile = rtfExtensionsFile;
3187 }
3188
3189 public boolean isGenerateMan() {
3190 return generateMan;
3191 }
3192
3193 public void setGenerateMan(boolean generateMan) {
3194 this.generateMan = generateMan;
3195 }
3196
3197 public String getManOutput() {
3198 return manOutput;
3199 }
3200
3201 public void setManOutput(String manOutput) {
3202 this.manOutput = manOutput;
3203 }
3204
3205 public String getManExtension() {
3206 return manExtension;
3207 }
3208
3209 public void setManExtension(String manExtension) {
3210 this.manExtension = manExtension;
3211 }
3212
3213 public boolean isManLinks() {
3214 return manLinks;
3215 }
3216
3217 public void setManLinks(boolean manLinks) {
3218 this.manLinks = manLinks;
3219 }
3220
3221 public boolean isGenerateXml() {
3222 return generateXml;
3223 }
3224
3225 public void setGenerateXml(boolean generateXml) {
3226 this.generateXml = generateXml;
3227 }
3228
3229 public String getXmlOutput() {
3230 return xmlOutput;
3231 }
3232
3233 public void setXmlOutput(String xmlOutput) {
3234 this.xmlOutput = xmlOutput;
3235 }
3236
3237 public String getXmlSchema() {
3238 return xmlSchema;
3239 }
3240
3241 public void setXmlSchema(String xmlSchema) {
3242 this.xmlSchema = xmlSchema;
3243 }
3244
3245 public String getXmlDtd() {
3246 return xmlDtd;
3247 }
3248
3249 public void setXmlDtd(String xmlDtd) {
3250 this.xmlDtd = xmlDtd;
3251 }
3252
3253 public boolean isXmlProgramlisting() {
3254 return xmlProgramlisting;
3255 }
3256
3257 public void setXmlProgramlisting(boolean xmlProgramlisting) {
3258 this.xmlProgramlisting = xmlProgramlisting;
3259 }
3260
3261 public boolean isGenerateAutogenDef() {
3262 return generateAutogenDef;
3263 }
3264
3265 public void setGenerateAutogenDef(boolean generateAutogenDef) {
3266 this.generateAutogenDef = generateAutogenDef;
3267 }
3268
3269 public boolean isGeneratePerlmod() {
3270 return generatePerlmod;
3271 }
3272
3273 public void setGeneratePerlmod(boolean generatePerlmod) {
3274 this.generatePerlmod = generatePerlmod;
3275 }
3276
3277 public boolean isPerlmodLatex() {
3278 return perlmodLatex;
3279 }
3280
3281 public void setPerlmodLatex(boolean perlmodLatex) {
3282 this.perlmodLatex = perlmodLatex;
3283 }
3284
3285 public boolean isPerlmodPretty() {
3286 return perlmodPretty;
3287 }
3288
3289 public void setPerlmodPretty(boolean perlmodPretty) {
3290 this.perlmodPretty = perlmodPretty;
3291 }
3292
3293 public String getPerlmodMakevarPrefix() {
3294 return perlmodMakevarPrefix;
3295 }
3296
3297 public void setPerlmodMakevarPrefix(String perlmodMakevarPrefix) {
3298 this.perlmodMakevarPrefix = perlmodMakevarPrefix;
3299 }
3300
3301 public boolean isEnablePreprocessing() {
3302 return enablePreprocessing;
3303 }
3304
3305 public void setEnablePreprocessing(boolean enablePreprocessing) {
3306 this.enablePreprocessing = enablePreprocessing;
3307 }
3308
3309 public boolean isMacroExpansion() {
3310 return macroExpansion;
3311 }
3312
3313 public void setMacroExpansion(boolean macroExpansion) {
3314 this.macroExpansion = macroExpansion;
3315 }
3316
3317 public boolean isExpandOnlyPredef() {
3318 return expandOnlyPredef;
3319 }
3320
3321 public void setExpandOnlyPredef(boolean expandOnlyPredef) {
3322 this.expandOnlyPredef = expandOnlyPredef;
3323 }
3324
3325 public boolean isSearchIncludes() {
3326 return searchIncludes;
3327 }
3328
3329 public void setSearchIncludes(boolean searchIncludes) {
3330 this.searchIncludes = searchIncludes;
3331 }
3332
3333 public String getIncludePath() {
3334 return includePath;
3335 }
3336
3337 public void setIncludePath(String includePath) {
3338 this.includePath = includePath;
3339 }
3340
3341 public String getIncludeFilePatterns() {
3342 return includeFilePatterns;
3343 }
3344
3345 public void setIncludeFilePatterns(String includeFilePatterns) {
3346 this.includeFilePatterns = includeFilePatterns;
3347 }
3348
3349 public String getPredefined() {
3350 return predefined;
3351 }
3352
3353 public void setPredefined(String predefined) {
3354 this.predefined = predefined;
3355 }
3356
3357 public String getExpandAsDefined() {
3358 return expandAsDefined;
3359 }
3360
3361 public void setExpandAsDefined(String expandAsDefined) {
3362 this.expandAsDefined = expandAsDefined;
3363 }
3364
3365 public boolean isSkipFunctionMacros() {
3366 return skipFunctionMacros;
3367 }
3368
3369 public void setSkipFunctionMacros(boolean skipFunctionMacros) {
3370 this.skipFunctionMacros = skipFunctionMacros;
3371 }
3372
3373 public String getTagfiles() {
3374 return tagfiles;
3375 }
3376
3377 public void setTagfiles(String tagfiles) {
3378 this.tagfiles = tagfiles;
3379 }
3380
3381 public String getGenerateTagfile() {
3382 return generateTagfile;
3383 }
3384
3385 public void setGenerateTagfile(String generateTagfile) {
3386 this.generateTagfile = generateTagfile;
3387 }
3388
3389 public boolean isAllexternals() {
3390 return allexternals;
3391 }
3392
3393 public void setAllexternals(boolean allexternals) {
3394 this.allexternals = allexternals;
3395 }
3396
3397 public boolean isExternalGroups() {
3398 return externalGroups;
3399 }
3400
3401 public void setExternalGroups(boolean externalGroups) {
3402 this.externalGroups = externalGroups;
3403 }
3404
3405 public String getPerlPath() {
3406 return perlPath;
3407 }
3408
3409 public void setPerlPath(String perlPath) {
3410 this.perlPath = perlPath;
3411 }
3412
3413 public boolean isClassDiagrams() {
3414 return classDiagrams;
3415 }
3416
3417 public void setClassDiagrams(boolean classDiagrams) {
3418 this.classDiagrams = classDiagrams;
3419 }
3420
3421 public String getMscgenPath() {
3422 return mscgenPath;
3423 }
3424
3425 public void setMscgenPath(String mscgenPath) {
3426 this.mscgenPath = mscgenPath;
3427 }
3428
3429 public boolean isHideUndocRelations() {
3430 return hideUndocRelations;
3431 }
3432
3433 public void setHideUndocRelations(boolean hideUndocRelations) {
3434 this.hideUndocRelations = hideUndocRelations;
3435 }
3436
3437 public boolean isHaveDot() {
3438 return haveDot;
3439 }
3440
3441 public void setHaveDot(boolean haveDot) {
3442 this.haveDot = haveDot;
3443 }
3444
3445 public String getDotFontname() {
3446 return dotFontname;
3447 }
3448
3449 public void setDotFontname(String dotFontname) {
3450 this.dotFontname = dotFontname;
3451 }
3452
3453 public Integer getDotFontsize() {
3454 return dotFontsize;
3455 }
3456
3457 public void setDotFontsize(Integer dotFontsize) {
3458 this.dotFontsize = dotFontsize;
3459 }
3460
3461 public String getDotFontpath() {
3462 return dotFontpath;
3463 }
3464
3465 public void setDotFontpath(String dotFontpath) {
3466 this.dotFontpath = dotFontpath;
3467 }
3468
3469 public boolean isClassGraph() {
3470 return classGraph;
3471 }
3472
3473 public void setClassGraph(boolean classGraph) {
3474 this.classGraph = classGraph;
3475 }
3476
3477 public boolean isCollaborationGraph() {
3478 return collaborationGraph;
3479 }
3480
3481 public void setCollaborationGraph(boolean collaborationGraph) {
3482 this.collaborationGraph = collaborationGraph;
3483 }
3484
3485 public boolean isGroupGraphs() {
3486 return groupGraphs;
3487 }
3488
3489 public void setGroupGraphs(boolean groupGraphs) {
3490 this.groupGraphs = groupGraphs;
3491 }
3492
3493 public boolean isUmlLook() {
3494 return umlLook;
3495 }
3496
3497 public void setUmlLook(boolean umlLook) {
3498 this.umlLook = umlLook;
3499 }
3500
3501 public boolean isTemplateRelations() {
3502 return templateRelations;
3503 }
3504
3505 public void setTemplateRelations(boolean templateRelations) {
3506 this.templateRelations = templateRelations;
3507 }
3508
3509 public boolean isIncludeGraph() {
3510 return includeGraph;
3511 }
3512
3513 public void setIncludeGraph(boolean includeGraph) {
3514 this.includeGraph = includeGraph;
3515 }
3516
3517 public boolean isIncludedByGraph() {
3518 return includedByGraph;
3519 }
3520
3521 public void setIncludedByGraph(boolean includedByGraph) {
3522 this.includedByGraph = includedByGraph;
3523 }
3524
3525 public boolean isCallGraph() {
3526 return callGraph;
3527 }
3528
3529 public void setCallGraph(boolean callGraph) {
3530 this.callGraph = callGraph;
3531 }
3532
3533 public boolean isCallerGraph() {
3534 return callerGraph;
3535 }
3536
3537 public void setCallerGraph(boolean callerGraph) {
3538 this.callerGraph = callerGraph;
3539 }
3540
3541 public boolean isGraphicalHierarchy() {
3542 return graphicalHierarchy;
3543 }
3544
3545 public void setGraphicalHierarchy(boolean graphicalHierarchy) {
3546 this.graphicalHierarchy = graphicalHierarchy;
3547 }
3548
3549 public boolean isDirectoryGraph() {
3550 return directoryGraph;
3551 }
3552
3553 public void setDirectoryGraph(boolean directoryGraph) {
3554 this.directoryGraph = directoryGraph;
3555 }
3556
3557 public String getDotImageFormat() {
3558 return dotImageFormat;
3559 }
3560
3561 public void setDotImageFormat(String dotImageFormat) {
3562 this.dotImageFormat = dotImageFormat;
3563 }
3564
3565 public String getDotPath() {
3566 return dotPath;
3567 }
3568
3569 public void setDotPath(String dotPath) {
3570 this.dotPath = dotPath;
3571 }
3572
3573 public String getDotfileDirs() {
3574 return dotfileDirs;
3575 }
3576
3577 public void setDotfileDirs(String dotfileDirs) {
3578 this.dotfileDirs = dotfileDirs;
3579 }
3580
3581 public Integer getDotGraphMaxNodes() {
3582 return dotGraphMaxNodes;
3583 }
3584
3585 public void setDotGraphMaxNodes(Integer dotGraphMaxNodes) {
3586 this.dotGraphMaxNodes = dotGraphMaxNodes;
3587 }
3588
3589 public Integer getMaxDotGraphDepth() {
3590 return maxDotGraphDepth;
3591 }
3592
3593 public void setMaxDotGraphDepth(Integer maxDotGraphDepth) {
3594 this.maxDotGraphDepth = maxDotGraphDepth;
3595 }
3596
3597 public boolean isDotTransparent() {
3598 return dotTransparent;
3599 }
3600
3601 public void setDotTransparent(boolean dotTransparent) {
3602 this.dotTransparent = dotTransparent;
3603 }
3604
3605 public boolean isDotMultiTargets() {
3606 return dotMultiTargets;
3607 }
3608
3609 public void setDotMultiTargets(boolean dotMultiTargets) {
3610 this.dotMultiTargets = dotMultiTargets;
3611 }
3612
3613 public boolean isGenerateLegend() {
3614 return generateLegend;
3615 }
3616
3617 public void setGenerateLegend(boolean generateLegend) {
3618 this.generateLegend = generateLegend;
3619 }
3620
3621 public boolean isDotCleanup() {
3622 return dotCleanup;
3623 }
3624
3625 public void setDotCleanup(boolean dotCleanup) {
3626 this.dotCleanup = dotCleanup;
3627 }
3628
3629 public boolean isSearchengine() {
3630 return searchengine;
3631 }
3632
3633 public void setSearchengine(boolean searchengine) {
3634 this.searchengine = searchengine;
3635 }
3636
3637 }