1 | void setFrom(String from) {↵ | | 1 | void setErrorEncoding(String errorEncoding) {↵
|
2 | if (isReference()) {↵ | | 2 | if (isReference()) {↵
|
3 | throw tooManyAttributes();↵ | | 3 | throw tooManyAttributes();↵
|
4 | }↵ | | 4 | }↵
|
5 | this.from = from;↵ | | 5 | this.errorEncoding = errorEncoding;↵
|
6 | }↵ | | 6 | }↵
|
|
7 | /**↵ | | 7 | /**↵
|
8 | * Set the argument to FileNameMapper.setTo↵ | | 8 | * Set the ↵
|
9 | * @param to the to attribute to pass to the FileNameMapper↵ | | 9 | input encoding.↵
|
| | | 10 | * @param inputEncoding <code>String</code>.↵
|
10 | */↵ | | 11 | */↵
|
11 | public void setTo(String to) {↵ | | 12 | public void setInputEncoding(String inputEncoding) {↵
|
12 | if (isReference()) {↵ | | 13 | if (isReference()) {↵
|
13 | throw tooManyAttributes();↵ | | 14 | throw tooManyAttributes();↵
|
14 | }↵ | | 15 | }↵
|
15 | this.to = to;↵ | | 16 | this.inputEncoding = inputEncoding;↵
|
16 | | | 17 |
|