Package com.lowagie.text.rtf.direct

Examples of com.lowagie.text.rtf.direct.RtfParser


     */
    public void importRtfDocument(Reader documentSource) throws IOException, DocumentException {
      if(!this.open) {
        throw new DocumentException("The document must be open to import RTF documents.");
      }
      RtfParser rtfImport = new RtfParser();
      rtfImport.importRtfDocument(documentSource, this.rtfDoc);
    }
View Full Code Here


     */
    public void importRtfFragment(Reader documentSource, RtfImportMappings mappings) throws IOException, DocumentException {
      if(!this.open) {
        throw new DocumentException("The document must be open to import RTF fragments.");
      }
      RtfParser rtfImport = new RtfParser();
      rtfImport.importRtfFragment(documentSource, this.rtfDoc, mappings);
    }
View Full Code Here

TOP

Related Classes of com.lowagie.text.rtf.direct.RtfParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.