1 | NameEntry createInclude() {↵ | | |
|
2 | if (isReference()) {↵ | | |
|
3 | throw noChildrenAllowed();↵ | | |
|
4 | }↵ | | |
|
5 | return addPatternToList(includeList);↵ | | |
|
6 | }↵ | | |
|
|
7 | /**↵ | | |
|
8 | * add a name entry on the include files list↵ | | |
|
9 | * @return a nested includesfile element to be configured.↵ | | |
|
10 | */↵ | | |
|
11 | public NameEntry createIncludesFile() {↵ | | 1 | NameEntry createIncludesFile() {↵
|
12 | if (isReference()) {↵ | | 2 | if (isReference()) {↵
|
13 | throw noChildrenAllowed();↵ | | 3 | throw noChildrenAllowed();↵
|
14 | }↵ | | 4 | }↵
|
15 | return addPatternToList(includesFileList);↵ | | 5 | return addPatternToList(includesFileList);↵
|
16 | }↵ | | 6 | }↵
|
|
17 | /**↵ | | 7 | /**↵
|
18 | * add a name entry on the exclude list↵ | | 8 | * add a name entry on the exclude list↵
|
19 | * @return a nested exclude element to be configured.↵ | | 9 | * @return a nested exclude element to be configured.↵
|
20 | */↵ | | 10 | */↵
|
21 | public NameEntry createExclude() {↵ | | 11 | public NameEntry createExclude() {↵
|
22 | if (isReference()) {↵ | | 12 | if (isReference()) {↵
|
23 | throw noChildrenAllowed();↵ | | 13 | throw noChildrenAllowed();↵
|
24 | }↵ | | 14 | }↵
|
25 | return addPatternToList(excludeList);↵ | | 15 | return addPatternToList(excludeList);↵
|
26 | | | 16 | }↵
|
|
| | | 17 | /**↵
|
| | | 18 | * add a name entry on the exclude files list↵
|
| | | 19 | * @return a nested excludesfile element to be configured.↵
|
| | | 20 | */↵
|
| | | 21 | public NameEntry createExcludesFile() {↵
|
| | | 22 | if (isReference()) {↵
|
| | | 23 | throw noChildrenAllowed();↵
|
| | | 24 | }↵
|
| | | 25 | return addPatternToList(excludesFileList);↵
|
| | | 26 |
|