TeXOutputStream

Inheritance: java.lang.Object

public final class TeXOutputStream

The class that associates an output stream of a random nature with a name.

Constructors

ConstructorDescription
TeXOutputStream(OutputStream stream, String fullName)Creates a new instance.

Methods

MethodDescription
getFullName()Gets the full name of the stream.
getStream()Gets the output stream itself.
close()Closes the current instance.

TeXOutputStream(OutputStream stream, String fullName)

public TeXOutputStream(OutputStream stream, String fullName)

Creates a new instance.

Parameters:

ParameterTypeDescription
streamjava.io.OutputStreamThe Java native OutputStream instance.
fullNamejava.lang.StringThe full name of the stream.

getFullName()

public String getFullName()

Gets the full name of the stream.

Returns: java.lang.String - The full name of the stream

getStream()

public OutputStream getStream()

Gets the output stream itself.

Returns: java.io.OutputStream - The output stream itself.

close()

public void close()

Closes the current instance.