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