Home | History | Annotate | Download | only in ant

Lines Matching refs:filter

30  * This DataType represents a name filter in Ant.
36 private String filter;
40 * Adds the contents of this element to the given name filter.
41 * @param filter the list of attributes to be extended.
42 * @param internal specifies whether the filter string should be converted
45 public void appendTo(List filter, boolean internal)
53 String filterString = filterElement.filter;
57 // Clear the filter to keep all names.
58 filter.clear();
67 // Append the filter.
68 filter.addAll(ListUtil.commaSeparatedList(filterString));
77 this.filter = name;
81 public void setFilter(String filter)
83 this.filter = filter;