()
| 54 | } |
| 55 | |
| 56 | public ValveWriter close() throws IOException { |
| 57 | this.indentation--; |
| 58 | this.writeLine(CLOSE_TAG); |
| 59 | return this; |
| 60 | } |
| 61 | |
| 62 | public ValveWriter put(String key, String value) throws IOException { |
| 63 | this.writeLine(QUOTE + key + QUOTE + " " + QUOTE + value + QUOTE); |