Package org.odftoolkit.odfdom.dom.attribute.dr3d

Examples of org.odftoolkit.odfdom.dom.attribute.dr3d.Dr3dVerticalSegmentsAttribute


   * Receives the value of the ODFDOM attribute representation <code>Dr3dVerticalSegmentsAttribute</code> , See {@odf.attribute dr3d:vertical-segments}
   *
   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getDr3dVerticalSegmentsAttribute() {
    Dr3dVerticalSegmentsAttribute attr = (Dr3dVerticalSegmentsAttribute) getOdfAttribute(OdfDocumentNamespace.DR3D, "vertical-segments");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }
View Full Code Here


   * Sets the value of ODFDOM attribute representation <code>Dr3dVerticalSegmentsAttribute</code> , See {@odf.attribute dr3d:vertical-segments}
   *
   * @param dr3dVerticalSegmentsValue   The type is <code>Integer</code>
   */
  public void setDr3dVerticalSegmentsAttribute(Integer dr3dVerticalSegmentsValue) {
    Dr3dVerticalSegmentsAttribute attr = new Dr3dVerticalSegmentsAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setIntValue(dr3dVerticalSegmentsValue.intValue());
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.attribute.dr3d.Dr3dVerticalSegmentsAttribute

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.