Uses of Interface
file2xliff4j.Converter

Packages that use Converter
file2xliff4j Provides classes and interfaces for converting files in formats such as HTML, OpenOffice Text, Word, Excel, PowerPoint, Rich Text Format (RTF) and Maker Interchange Format (MIF) to XLIFF (XML Localisation Interchange File Format). 
 

Uses of Converter in file2xliff4j
 

Classes in file2xliff4j that implement Converter
 class ExcelExporter
          Class to export XLIFF to an Excel format.
 class ExcelImporter
          The ExcelImporter is used to import Excel documents, converting them to XLIFF.
 class HtmlExporter
           
 class HtmlImporter
          The HtmlImporter is used to import HTML to (what else?) XLIFF.
 class JavaPropertiesExporter
          Export an XLIFF target translation to a Java property Resource Bundle.
 class JavaPropertiesImporter
          Import a Java Property Resource Bundle to XLIFF.
 class MifExporter
           
 class MifImporter
          The MifImporter is used to normalize "outside" XLIFF to a smaller subset of XLIFF.
 class OdfExporter
          Class to export XLIFF to an OpenDocumentFormat document.
 class OdfImporter
          The OdfImporter is used to import Open Document Format to XLIFF.
 class OOoTextExporter
          Class to export XLIFF to an OpenOffice.org OpenDocument Text (odt), Spreadsheet (ods) or Presentation (odp) document.
 class OOoTextImporter
          The OOoTextImporter is used to import OpenOffice.org Text (odt) documents, converting them to XLIFF.
 class PdfExporterToHtml
          Exporter of original PDF document's translation to Html format.
 class PdfExporterToOOoText
          Exporter of original PDF document's translation to OpenOffice.org Text format.
 class PdfExporterToPlaintext
          Exporter of original PDF document's translation to Plaintext format.
 class PdfExporterToWord
          Exporter of original PDF document's translation to Word format.
 class PdfImporter
          The PdfImporter imports Portable Document Format to (what else?) XLIFF.
 class PlaintextExporter
          Class to export an XLIFF target to plaintext document in the same format as the original plaintext source document.
 class PlaintextImporter
          The PlaintextImporter identifies translatable text in plaintext files, creating an XLIFF file with source elements containing segments of the text.
 class PoExporter
          Export a GNU Portable Object file for a specified target language.
 class PoImporter
          Import a GNU Portable Object Template to XLIFF.
 class PPTExporter
          Class to export XLIFF to an Microsoft PowerPoint format.
 class PPTImporter
          The PPTImporter is used to import Microsoft PowerPoint documents, converting them to XLIFF.
 class RTFExporter
          Class to export XLIFF to an RTF format.
 class RTFImporter
          The RTFImporter is used to import RTF documents, converting them to XLIFF.
 class WinRcExporter
          Export the segments for a specified translation from XLIFF to a Windows RC file.
 class WinRcImporter
          Import a Microsoft Windows rc (resource) file.
 class WordExporter
          Class to export XLIFF to an Microsoft Word format.
 class WordImporter
          The WordImporter is used to import Microsoft Word documents, converting them to XLIFF.
 class XliffImporter
          The XliffImporter is used to normalize "outside" XLIFF to a smaller subset of XLIFF.
 class XMLExporter
          Class to export an XLIFF target to an XML document in the same format as the original XML source document.
 class XMLImporter
          The generic XML importer will convert most XML to XLIFF.
 class XulDtdExporter
          Export an XLIFF target translation to a DTD used by XUL.
 class XulDtdImporter
          Import to XLIFF a Document Type Definition (DTD) file that declares entities for use in XML User Interface Language (XUL) localization.
 

Methods in file2xliff4j that return Converter
static Converter ConverterFactory.createConverter(FileType fromType, FileType toType)
          Passed the "from" and "to" types of a conversion request, return an appropriate converter that knows how to perform the conversion.
static Converter ConverterFactory.createConverter(FileType fromType, FileType toType, FileType originalType)
          Passed the "from" and "to" types of a conversion request, return an appropriate converter that knows how to perform the conversion.
static Converter ConverterFactory.createConverter(FileType fromType, FileType toType, java.lang.String fromFileName)
          Passed the "from" and "to" types of a conversion request, as well as the file name of the "from" file (with the full path specified) return an appropriate converter that knows how to perform the conversion.