Prints the current indent level.
()
| 171 | * Prints the current indent level. |
| 172 | */ |
| 173 | public void printIndent() { |
| 174 | for (int i = 0; i < indentLevel; i++) { |
| 175 | try { |
| 176 | out.write(indent); |
| 177 | } catch(IOException ioe) { |
| 178 | throw new GroovyRuntimeException(ioe); |
| 179 | } |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Prints an end-of-line character (if enabled via addNewLines property). |