Package ghidra.sleigh.grammar
Class LineArrayListWriter
- java.lang.Object
-
- java.io.Writer
-
- ghidra.sleigh.grammar.LineArrayListWriter
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.Appendable,java.lang.AutoCloseable
public class LineArrayListWriter extends java.io.Writer
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.StringLINE_SEPARATORprotected intlinenoprotected java.util.ArrayList<java.lang.StringBuilder>lines
-
Constructor Summary
Constructors Constructor Description LineArrayListWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()java.util.ArrayList<java.lang.String>getLines()voidnewLine()java.lang.StringtoString()voidwrite(char[] cbuf, int off, int len)
-
-
-
Method Detail
-
newLine
public void newLine()
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein classjava.io.Writer- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Specified by:
flushin classjava.io.Writer- Throws:
java.io.IOException
-
write
public void write(char[] cbuf, int off, int len) throws java.io.IOException- Specified by:
writein classjava.io.Writer- Throws:
java.io.IOException
-
getLines
public java.util.ArrayList<java.lang.String> getLines()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-