public enum Target extends Enum<Target>
clr and grp.
The latter is not creational.
Created: Fri Oct 7 13:32:21 2016| Enum Constant and Description |
|---|
docx
Based on
odt |
dvi
standalone.
|
html
Based on
pdf |
odt
Based on
pdf |
pdf
standalone.
|
rtf
standalone
|
txt
Based on
pdf |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
getPatternOutputFiles(Settings settings)
Returns the pattern of the output files.
|
abstract void |
processSource(LatexProcessor latexProcessor,
File texFile)
Processes the latex main file
texFile
delegating to latexProcessor. |
static Target |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target rtf
public static final Target dvi
public static final Target pdf
public static Target[] values()
for (Target c : Target.values()) System.out.println(c);
public static Target valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic abstract void processSource(LatexProcessor latexProcessor, File texFile) throws BuildFailureException
texFile
delegating to latexProcessor.
Logging: FIXME: may be incomplete
texFile failed.
latexProcessor - the processor to process texFiletexFile - the latex main file to be processed.BuildFailureException - TEX01 if invocation of a command
to transform texFile failed.public abstract String getPatternOutputFiles(Settings settings)
^T$T\.pdf$,
where T$T represents the name of the latex main file
without suffix.
For target html, this is much more complicated,
because a lot of files are created in general,
not only ^T$T\.h?tml?$.settings - the settings required to determine the pattern.
This depends on the settings for html only.Copyright © 2016–2018 Simuline Organization (l2r). All rights reserved.