Examples of DrawTextRotateAngleAttribute


Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawTextRotateAngleAttribute

   * Receives the value of the ODFDOM attribute representation <code>DrawTextRotateAngleAttribute</code> , See {@odf.attribute draw:text-rotate-angle}
   *
   * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public String getDrawTextRotateAngleAttribute() {
    DrawTextRotateAngleAttribute attr = (DrawTextRotateAngleAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "text-rotate-angle");
    if (attr != null) {
      return String.valueOf(attr.getValue());
    }
    return DrawTextRotateAngleAttribute.DEFAULT_VALUE;
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawTextRotateAngleAttribute

   * Sets the value of ODFDOM attribute representation <code>DrawTextRotateAngleAttribute</code> , See {@odf.attribute draw:text-rotate-angle}
   *
   * @param drawTextRotateAngleValue   The type is <code>String</code>
   */
  public void setDrawTextRotateAngleAttribute(String drawTextRotateAngleValue) {
    DrawTextRotateAngleAttribute attr = new DrawTextRotateAngleAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setValue(drawTextRotateAngleValue);
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawTextRotateAngleAttribute

   * Receives the value of the ODFDOM attribute representation <code>DrawTextRotateAngleAttribute</code> , See {@odf.attribute draw:text-rotate-angle}
   *
   * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public String getDrawTextRotateAngleAttribute() {
    DrawTextRotateAngleAttribute attr = (DrawTextRotateAngleAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "text-rotate-angle");
    if (attr != null) {
      return String.valueOf(attr.getValue());
    }
    return DrawTextRotateAngleAttribute.DEFAULT_VALUE;
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawTextRotateAngleAttribute

   * Sets the value of ODFDOM attribute representation <code>DrawTextRotateAngleAttribute</code> , See {@odf.attribute draw:text-rotate-angle}
   *
   * @param drawTextRotateAngleValue   The type is <code>String</code>
   */
  public void setDrawTextRotateAngleAttribute(String drawTextRotateAngleValue) {
    DrawTextRotateAngleAttribute attr = new DrawTextRotateAngleAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setValue(drawTextRotateAngleValue);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.