Package org.docx4j.dml.diagram

Examples of org.docx4j.dml.diagram.CTStyleDefinition


      public void CreateMinimalContent(String uniqueId) {

      ObjectFactory factory = new ObjectFactory();
     
      CTStyleDefinition styleDef = factory.createCTStyleDefinition();
      styleDef.setUniqueId(uniqueId);
     
      CTStyleLabel styleLabel = factory.createCTStyleLabel();
      styleLabel.setName("node0");
     
      styleDef.getStyleLbl().add(styleLabel);
     
      this.setJaxbElement(styleDef);     
      }
View Full Code Here

TOP

Related Classes of org.docx4j.dml.diagram.CTStyleDefinition

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.