1 | FilterChain createFilterChain() {↵ | | |
|
2 | FilterChain filterChain = new FilterChain();↵ | | |
|
3 | filterChains.addElement(filterChai↵ | | 1 | DTDLocation createDTD() {↵
|
| | | 2 | DTDLocation dtdLocation = new DTDLocation();↵
|
4 | n);↵ | | 3 | config.dtdLocations.add(dtdLocation);↵
|
|
5 | return filterChain;↵ | | 4 | return dtdLocation;↵
|
6 | }↵ | | 5 | }↵
|
|
7 | /**↵ | | 6 | /**↵
|
8 | * Add a filterset.↵ | | 7 | * Adds a fileset for support elements.↵
|
| | | 8 | *↵
|
9 | * @return a filter set object.↵ | | 9 | * @return a fileset which can be populated with support files.↵
|
10 | */↵ | | 10 | */↵
|
11 | public FilterSet createFilterSet() {↵ | | 11 | public FileSet createSupport() {↵
|
12 | FilterSet filterSet = new FilterSet();↵ | | 12 | FileSet supportFileSet = new FileSet();↵
|
13 | filterSets.addElement(filterSet);↵ | | 13 | config.supportFileSets.add(supportFileSet);↵
|
14 | return filterSet;↵ | | 14 | return supportFileSet;↵
|
15 | | | 15 |
|