Interface ToPDFConverter
-
- All Superinterfaces:
DocumentFormatConversion
- All Known Implementing Classes:
OpenOfficeToPDFConverter
public interface ToPDFConverter extends DocumentFormatConversion
A converter of following listed documents into PDF format : - ODT - DOC The converter is managed by the IoC container and can be retrieving under the name 'toPDFConverter'.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isDocumentSupported(String fileName)
Is the specified document in the format on which the converter works?-
Methods inherited from interface org.silverpeas.core.contribution.converter.DocumentFormatConversion
convert, convert, convert, getSupportedFormats
-
-
-
-
Method Detail
-
isDocumentSupported
boolean isDocumentSupported(String fileName)
Is the specified document in the format on which the converter works?- Parameters:
fileName
- the fileName or path to check its format is supported.- Returns:
- true if the format of the document is supported by this converter, false otherwise.
-
-