Examples of SmilEndsyncAttribute


Examples of org.odftoolkit.odfdom.dom.attribute.smil.SmilEndsyncAttribute

   * Receives the value of the ODFDOM attribute representation <code>SmilEndsyncAttribute</code> , See {@odf.attribute smil:endsync}
   *
   * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public String getSmilEndsyncAttribute() {
    SmilEndsyncAttribute attr = (SmilEndsyncAttribute) getOdfAttribute(OdfDocumentNamespace.SMIL, "endsync");
    if (attr != null) {
      return String.valueOf(attr.getValue());
    }
    return null;
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.smil.SmilEndsyncAttribute

   * Sets the value of ODFDOM attribute representation <code>SmilEndsyncAttribute</code> , See {@odf.attribute smil:endsync}
   *
   * @param smilEndsyncValue   The type is <code>String</code>
   */
  public void setSmilEndsyncAttribute(String smilEndsyncValue) {
    SmilEndsyncAttribute attr = new SmilEndsyncAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setValue(smilEndsyncValue);
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.smil.SmilEndsyncAttribute

   * Receives the value of the ODFDOM attribute representation <code>SmilEndsyncAttribute</code> , See {@odf.attribute smil:endsync}
   *
   * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public String getSmilEndsyncAttribute() {
    SmilEndsyncAttribute attr = (SmilEndsyncAttribute) getOdfAttribute(OdfDocumentNamespace.SMIL, "endsync");
    if (attr != null) {
      return String.valueOf(attr.getValue());
    }
    return null;
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.smil.SmilEndsyncAttribute

   * Sets the value of ODFDOM attribute representation <code>SmilEndsyncAttribute</code> , See {@odf.attribute smil:endsync}
   *
   * @param smilEndsyncValue   The type is <code>String</code>
   */
  public void setSmilEndsyncAttribute(String smilEndsyncValue) {
    SmilEndsyncAttribute attr = new SmilEndsyncAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setValue(smilEndsyncValue);
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.smil.SmilEndsyncAttribute

   * Receives the value of the ODFDOM attribute representation <code>SmilEndsyncAttribute</code> , See {@odf.attribute smil:endsync}
   *
   * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public String getSmilEndsyncAttribute() {
    SmilEndsyncAttribute attr = (SmilEndsyncAttribute) getOdfAttribute(OdfDocumentNamespace.SMIL, "endsync");
    if (attr != null) {
      return String.valueOf(attr.getValue());
    }
    return null;
  }
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.smil.SmilEndsyncAttribute

   * Sets the value of ODFDOM attribute representation <code>SmilEndsyncAttribute</code> , See {@odf.attribute smil:endsync}
   *
   * @param smilEndsyncValue   The type is <code>String</code>
   */
  public void setSmilEndsyncAttribute(String smilEndsyncValue) {
    SmilEndsyncAttribute attr = new SmilEndsyncAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setValue(smilEndsyncValue);
  }
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.