1 | PatternSet.NameEntry createInclude() {↵ | | |
|
2 | usedMatchingTask = true;↵ | | |
|
3 | return super.createInclude();↵ | | |
|
4 | }↵ | | |
|
|
5 | /**↵ | | |
|
6 | * add a name entry on the include files list↵ | | |
|
7 | * @return an NameEntry object to be configured↵ | | |
|
8 | */↵ | | |
|
9 | public PatternSet.NameEntry createIncludesFile() {↵ | | 1 | PatternSet.NameEntry createIncludesFile() {↵
|
10 | usedMatchingTask = true;↵ | | 2 | usedMatchingTask = true;↵
|
11 | return super.createIncludesFile();↵ | | 3 | return super.createIncludesFile();↵
|
12 | }↵ | | 4 | }↵
|
|
13 | /**↵ | | 5 | /**↵
|
14 | * add a name entry on the exclude list↵ | | 6 | * add a name entry on the exclude list↵
|
15 | * @return an NameEntry object to be configured↵ | | 7 | * @return an NameEntry object to be configured↵
|
16 | */↵ | | 8 | */↵
|
17 | public PatternSet.NameEntry createExclude() {↵ | | 9 | public PatternSet.NameEntry createExclude() {↵
|
18 | usedMatchingTask = true;↵ | | 10 | usedMatchingTask = true;↵
|
19 | return super.createExclude();↵ | | 11 | return super.createExclude();↵
|
20 | | | 12 | }↵
|
|
| | | 13 | /**↵
|
| | | 14 | * add a name entry on the include files list↵
|
| | | 15 | * @return an NameEntry object to be configured↵
|
| | | 16 | */↵
|
| | | 17 | public PatternSet.NameEntry createExcludesFile() {↵
|
| | | 18 | usedMatchingTask = true;↵
|
| | | 19 | return super.createExcludesFile();↵
|
| | | 20 |
|