Package org.odftoolkit.odfdom.dom.element.anim

Examples of org.odftoolkit.odfdom.dom.element.anim.AnimAnimateColorElement


   * Child element is new in Odf 1.2
   *
   * @return the element {@odf.element anim:animateColor}
   */
   public AnimAnimateColorElement newAnimAnimateColorElement(String smilAttributeNameValue) {
    AnimAnimateColorElement animAnimateColor = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimAnimateColorElement.class);
    animAnimateColor.setSmilAttributeNameAttribute(smilAttributeNameValue);
    this.appendChild(animAnimateColor);
    return animAnimateColor;
  }
View Full Code Here


   *
   * @param smilAttributeNameValue  the <code>String</code> value of <code>SmilAttributeNameAttribute</code>, see {@odf.attribute  smil:attributeName} at specification
   * @return the element {@odf.element anim:animateColor}
   */
   public AnimAnimateColorElement newAnimAnimateColorElement(String smilAttributeNameValue) {
    AnimAnimateColorElement animAnimateColor = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimAnimateColorElement.class);
    animAnimateColor.setSmilAttributeNameAttribute(smilAttributeNameValue);
    this.appendChild(animAnimateColor);
    return animAnimateColor;
  }
View Full Code Here

   * Child element is new in Odf 1.2
   *
   * @return the element {@odf.element anim:animateColor}
   */
   public AnimAnimateColorElement newAnimAnimateColorElement(String smilAttributeNameValue) {
    AnimAnimateColorElement animAnimateColor = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimAnimateColorElement.class);
    animAnimateColor.setSmilAttributeNameAttribute(smilAttributeNameValue);
    this.appendChild(animAnimateColor);
    return animAnimateColor;
  }
View Full Code Here

   *
   * @param smilAttributeNameValue  the <code>String</code> value of <code>SmilAttributeNameAttribute</code>, see {@odf.attribute  smil:attributeName} at specification
   * @return the element {@odf.element anim:animateColor}
   */
   public AnimAnimateColorElement newAnimAnimateColorElement(String smilAttributeNameValue) {
    AnimAnimateColorElement animAnimateColor = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimAnimateColorElement.class);
    animAnimateColor.setSmilAttributeNameAttribute(smilAttributeNameValue);
    this.appendChild(animAnimateColor);
    return animAnimateColor;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.anim.AnimAnimateColorElement

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.