Interface OutputDirectory
-
- All Known Implementing Classes:
LocalOutputDirectory
public interface OutputDirectory
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classOutputDirectory.Stream
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetIndent()intgetLineLength()java.lang.StringgetLineSeparator()OutputDirectory.Streamopen(java.lang.String sourceUri, java.lang.String encoding)java.lang.Stringreference(java.lang.String fromSourceUri, java.lang.String toSourceUri)voidsetEncoding(java.lang.String encoding)This overrides the encoding specified with open.voidsetIndent(int indent)voidsetLineLength(int lineLength)
-
-
-
Method Detail
-
open
OutputDirectory.Stream open(java.lang.String sourceUri, java.lang.String encoding) throws java.io.IOException
- Throws:
java.io.IOException
-
reference
java.lang.String reference(java.lang.String fromSourceUri, java.lang.String toSourceUri)
-
getLineSeparator
java.lang.String getLineSeparator()
-
getLineLength
int getLineLength()
-
setLineLength
void setLineLength(int lineLength)
-
getIndent
int getIndent()
-
setIndent
void setIndent(int indent)
-
setEncoding
void setEncoding(java.lang.String encoding)
This overrides the encoding specified with open.
-
-