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.String
LINE_SEPARATOR
protected int
lineno
protected 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 void
close()
void
flush()
java.util.ArrayList<java.lang.String>
getLines()
void
newLine()
java.lang.String
toString()
void
write(char[] cbuf, int off, int len)
-
-
-
Method Detail
-
newLine
public void newLine()
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Specified by:
close
in classjava.io.Writer
- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException
- Specified by:
flush
in interfacejava.io.Flushable
- Specified by:
flush
in classjava.io.Writer
- Throws:
java.io.IOException
-
write
public void write(char[] cbuf, int off, int len) throws java.io.IOException
- Specified by:
write
in classjava.io.Writer
- Throws:
java.io.IOException
-
getLines
public java.util.ArrayList<java.lang.String> getLines()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-