Package eu.simuline.m2latex.core
Interface ParameterAdapter
-
- All Known Implementing Classes:
AbstractLatexMojo,AbstractLatexTask,CfgLatexMojo,ChkMojo,ClearMojo,DocxMojo,DviMojo,GraphicsMojo,HtmlMojo,LatexCfgTask,LatexClrTask,OdtMojo,PdfMojo,RtfMojo,TxtMojo
public interface ParameterAdapterCommon interface to pass parameters from ant and from maven. The core method isinitialize(). Note that both implementations, the one of an ant task and the one for the maven plugin implement a method execute() but throwing specific exceptions.TODO: describe getTarget()
- See Also:
LatexCfgTask,AbstractLatexMojo
-
-
Method Summary
Modifier and Type Method Description SortedSet<Target>getTargetSet()Returns the set of target.voidinitialize()Sets up the parameters and initializesLatexProcessor.
-
-
-
Method Detail
-
initialize
void initialize()
Sets up the parameters and initializesLatexProcessor.
-
getTargetSet
SortedSet<Target> getTargetSet()
Returns the set of target. FIXME: Better would be Enum set but best a sorted kind of EnumSet The set is an EnumSet and thus in a sense sorted, although not imlementing SortedSet: ***** The iterator returned by the iterator method traverses the elements in their natural order (the order in which the enum constants are declared). TODO: generalize to more than one target.
-
-