Package org.apache.wiki.htmltowiki
Class WhitespaceTrimWriter
- java.lang.Object
-
- java.io.Writer
-
- org.apache.wiki.htmltowiki.WhitespaceTrimWriter
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.Appendable,java.lang.AutoCloseable
public class WhitespaceTrimWriter extends java.io.Writer
Part of the XHtmlToWikiTranslator.
-
-
Constructor Summary
Constructors Constructor Description WhitespaceTrimWriter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()booleanisCurrentlyOnLineBegin()Returns true, if the writer is currently writing a line start.booleanisWhitespaceTrimMode()Returns true, if this Writer is currently trimming any whitespaces.voidsetWhitespaceTrimMode(boolean trimMode)Set the trimming mode on/off.java.lang.StringtoString()voidwrite(char[] arg0, int arg1, int arg2)
-
-
-
Constructor Detail
-
WhitespaceTrimWriter
public WhitespaceTrimWriter()
-
-
Method Detail
-
flush
public void flush()
- Specified by:
flushin interfacejava.io.Flushable- Specified by:
flushin classjava.io.Writer
-
isWhitespaceTrimMode
public boolean isWhitespaceTrimMode()
Returns true, if this Writer is currently trimming any whitespaces.- Returns:
- True, if trimming.
-
setWhitespaceTrimMode
public void setWhitespaceTrimMode(boolean trimMode)
Set the trimming mode on/off.- Parameters:
trimMode- True, if you want trimming to be turned on. False otherwise.
-
write
public void write(char[] arg0, int arg1, int arg2) throws java.io.IOException
- Specified by:
writein classjava.io.Writer- Throws:
java.io.IOException
-
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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
isCurrentlyOnLineBegin
public boolean isCurrentlyOnLineBegin()
Returns true, if the writer is currently writing a line start.- Returns:
- True or false.
-
-