1 | public void setExcludes(String excludes) {↵ | | 1 | public void setExcludes(String excludes) {↵
|
2 | this.excludes = excludes;↵ | | 2 | this.excludes = excludes;↵
|
3 | }↵ | | 3 | }↵
|
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Gets the patterns from the exclude filter. Rather that duplicate the↵ | | 5 | * Gets the patterns from the exclude filter. Rather that duplicate the↵
|
6 | * details of AntStarTeanCheckOut's filtering here, refer to these↵ | | 6 | * details of AntStarTeanCheckOut's filtering here, refer to these↵
|
7 | links:↵ | | 7 | * links:↵
|
8 | *↵ | | 8 | *↵
|
9 | * @return A string of filter patterns separated by spaces.↵ | | 9 | * @return A string of filter patterns separated by spaces.↵
|
10 | * @see #setExcludes(String excludes)↵ | | 10 | * @see #setExcludes(String excludes)↵
|
11 | * @see #setIncludes(String includes)↵ | | 11 | * @see #setIncludes(String includes)↵
|
12 | * @see #getIncludes()↵ | | 12 | * @see #getIncludes()↵
|
13 | */↵ | | 13 | */↵
|
14 | public String getExcludes() {↵ | | 14 | public String getExcludes() {↵
|
15 | return excludes | | 15 | return excludes
|