Package org.docx4j.openpackaging.parts

Examples of org.docx4j.openpackaging.parts.PartName


  public EndnotesPart(PartName partName) throws InvalidFormatException {
    super(partName);
  }

  public EndnotesPart() throws InvalidFormatException {
    super(new PartName("/word/endnotes.xml"));
    init();   
  }
View Full Code Here


    super(partName);
    init();
  }

  public WebSettingsPart() throws InvalidFormatException {
    super(new PartName("/word/webSettings.xml"));
    init();
  }
View Full Code Here

    super(partName);
    init();   
  }

  public FontTablePart() throws InvalidFormatException {
    super(new PartName("/word/fontTable.xml"));
    init();   
  }
View Full Code Here

    init();       
  }

 
  public EmbeddedPackagePart() throws InvalidFormatException {
    super( new PartName("/word/embeddings/foo") ); // eg Microsoft_Office_Powerpoint_Presentation.pptx
    init();       
  }
View Full Code Here

    super(partName);
    init();
  }

  public CommentsPart() throws InvalidFormatException {
    super(new PartName("/word/comments.xml"));
    init();
  }
View Full Code Here

    super(partName);
    init();
  }
 
  public NumberingDefinitionsPart() throws InvalidFormatException {
    super(new PartName("/word/numbering.xml"));
    init();
  }
View Full Code Here

public class BibliographyPart extends JaxbCustomXmlDataStoragePart<JAXBElement<org.docx4j.bibliography.CTSources>> {
 
  private static Logger log = LoggerFactory.getLogger(BibliographyPart.class);   

  public BibliographyPart() throws InvalidFormatException {
    super(new PartName("/customXml/item1.xml"));
    init();
  }
View Full Code Here

    super(partName);
    init();   
  }
 
  public GlossaryDocumentPart() throws InvalidFormatException {
    super(new PartName("/word/glossary/document.xml"));
    init();
  }
View Full Code Here

   
    init();
  }
 
  public AlternativeFormatInputPart(AltChunkType type) throws InvalidFormatException {
    super(new PartName(generatePartName(type)));
   
    setAltChunkType(type);
   
    init();
  }
View Full Code Here

    super(partName);
    init();
  }   

  public VbaDataPart() throws InvalidFormatException {
    super( new PartName("/word/vbaData.xml") );
    init();
  }   
View Full Code Here

TOP

Related Classes of org.docx4j.openpackaging.parts.PartName

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.