Uses of Class
org.tbull.util.dev.IndentableLineBuffer

Packages that use IndentableLineBuffer
org.tbull.util.dev Development utilities, not usually needed for final products. 
 

Uses of IndentableLineBuffer in org.tbull.util.dev
 

Methods in org.tbull.util.dev that return IndentableLineBuffer
 IndentableLineBuffer IndentableLineBuffer.addLine(int indent, String s)
          Begins a new line with the given indent level and copies the contents of s into it.
 IndentableLineBuffer IndentableLineBuffer.addLine(int indent, StringBuilder sb)
          Begins a new line with the given indent level and copies the contents of sb into it.
 IndentableLineBuffer IndentableLineBuffer.addLine(String s)
          Begins a new line and copies the contents of s into it.
 IndentableLineBuffer IndentableLineBuffer.addLine(StringBuilder sb)
          Begins a new line and copies the contents of sb into it.
 IndentableLineBuffer IndentableLineBuffer.addLines(IndentableLineBuffer other)
          Adds the lines of the other line buffer to this one.
 IndentableLineBuffer IndentableLineBuffer.append(char c)
          Appends the specified character to the current last line.
 IndentableLineBuffer IndentableLineBuffer.append(CharSequence csq)
          Appends the specified character sequence to the current last line.
 IndentableLineBuffer IndentableLineBuffer.append(CharSequence csq, int start, int end)
          Appends a subsequence of the specified character sequence to the current last line.
 IndentableLineBuffer IndentableLineBuffer.append(String s)
          Appends the contents of s to the current last line.
 IndentableLineBuffer IndentableLineBuffer.append(StringBuilder sb)
          Appends the contents of sb to the current last line.
 IndentableLineBuffer IndentableLineBuffer.appendLines(IndentableLineBuffer other)
          Adds the lines of the other line buffer to this one, concatenating the [letzte und erste (adjoining?)] lines.
 IndentableLineBuffer IndentableLineBuffer.clone()
          Creates a deep copy of this object.
 IndentableLineBuffer DataDumpable.dumpData()
           
 IndentableLineBuffer IndentableLineBuffer.dumpData()
           
 IndentableLineBuffer IndentableLineBuffer.format(Locale l, String format, Object... args)
          Append a formatted string to the current last line using the specified locale, format string, and arguments.
 IndentableLineBuffer IndentableLineBuffer.format(String format, Object... args)
          Append a formatted string to the current last line using the specified format string and arguments.
 IndentableLineBuffer IndentableLineBuffer.indent(int indent)
          Indents existing and future lines by modifing the base indent level.
 IndentableLineBuffer IndentableLineBuffer.indentCurrentLine(int indent)
          Indents the current line.
 IndentableLineBuffer IndentableLineBuffer.indentExisting(int indent)
          Indents existing lines by modifying each line's individual indent level.
 IndentableLineBuffer IndentableLineBuffer.newLine()
          Begins a new (empty) line.
 IndentableLineBuffer IndentableLineBuffer.newLine(int indent)
          Begins a new (empty) line with the given indent level.
 IndentableLineBuffer IndentableLineBuffer.setBaseIndentLevel(int indent_level)
          Sets the base indent level.
 IndentableLineBuffer IndentableLineBuffer.setDefaultLineIndentLevel(int indent_level)
          Sets the default individual line indent level.
 IndentableLineBuffer IndentableLineBuffer.setIndentation(String indentation)
          Sets the indentation string to use on stringification.
 IndentableLineBuffer IndentableLineBuffer.setLineSeparator(String sep)
          Sets the line separator used by toString().
 

Methods in org.tbull.util.dev with parameters of type IndentableLineBuffer
 IndentableLineBuffer IndentableLineBuffer.addLines(IndentableLineBuffer other)
          Adds the lines of the other line buffer to this one.
 IndentableLineBuffer IndentableLineBuffer.appendLines(IndentableLineBuffer other)
          Adds the lines of the other line buffer to this one, concatenating the [letzte und erste (adjoining?)] lines.