ITeXInputDirectory
All Implemented Interfaces: java.io.Closeable
public interface ITeXInputDirectory extends Closeable
Interface of generalized TeX input directory.
Methods
| Method | Description |
|---|---|
| getFile(String fileName, String[] fullName) | Returns the stream to read from or to write to. |
| getFile(String fileName, String[] fullName, boolean searchSubdirectories) | Returns the stream to read from or to write to. |
getFile(String fileName, String[] fullName)
public abstract InputStream getFile(String fileName, String[] fullName)
Returns the stream to read from or to write to.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| fileName | java.lang.String | The file name. |
| fullName | java.lang.String[] | The full file name. |
Returns: java.io.InputStream - The stream.
getFile(String fileName, String[] fullName, boolean searchSubdirectories)
public abstract InputStream getFile(String fileName, String[] fullName, boolean searchSubdirectories)
Returns the stream to read from or to write to.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| fileName | java.lang.String | The file name. |
| fullName | java.lang.String[] | The full file name. |
| searchSubdirectories | boolean | Indicates whether to look for a file in subdirectories. |
Returns: java.io.InputStream - The stream.