Searched defs:indentChars (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAbstractWriter.java82 private char[] indentChars; field in class:AbstractWriter
469 if (indentChars == null || max > indentChars.length) {
470 indentChars = new char[max];
472 indentChars[counter] = ' ';
477 output(indentChars, 0, max);

Completed in 38 milliseconds