Package writer2latex.api
Class ConverterFactory
java.lang.Object
writer2latex.api.ConverterFactory
This is a factory class which provides static methods to create converters
for documents in OpenDocument (or OpenOffice.org 1.x) format into a specific MIME type
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BatchConverter
createBatchConverter
(String sMIME) Create aBatchConverter
implementation which supports conversion into the specified MIME typestatic Converter
createConverter
(String sMIME) Create aConverter
implementation which supports conversion into the specified MIME type.static StarMathConverter
Create aStarMathConverter
implementationstatic String
getDate()
Return date informationstatic String
Return version information
-
Constructor Details
-
ConverterFactory
public ConverterFactory()
-
-
Method Details
-
getVersion
Return version information- Returns:
- the Writer2LaTeX version in the form (major version).(minor version).(patch level) an uneven minor version indicates a development release
-
getDate
Return date information- Returns:
- the release date for this Writer2LaTeX version
-
createConverter
Create a
Converter
implementation which supports conversion into the specified MIME type.Currently supported MIME types are:
application/x-latex
for LaTeX formatapplication/x-bibtex
for BibTeX formattext/html
for XHTML 1.0 strict formatapplication/xhtml+xml
for XHTML+MathMLapplication/xml
for XHTML+MathML using stylesheets from w3c's math working group
- Parameters:
sMIME
- the MIME type of the target format- Returns:
- the required
Converter
or null if a converter for the requested MIME type could not be created
-
createBatchConverter
Create a
BatchConverter
implementation which supports conversion into the specified MIME typeThe only currently supported MIME type is
text/html
(XHTML 1.0 strict)- Parameters:
sMIME
- the MIME type of the target format- Returns:
- the required
BatchConverter
or null if a converter for the requested MIME type could not be created
-
createStarMathConverter
Create aStarMathConverter
implementation- Returns:
- the converter
-