Package org.odftoolkit.odfdom.dom.attribute.number

Examples of org.odftoolkit.odfdom.dom.attribute.number.NumberMinIntegerDigitsAttribute


   * Receives the value of the ODFDOM attribute representation <code>NumberMinIntegerDigitsAttribute</code> , See {@odf.attribute number:min-integer-digits}
   *
   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getNumberMinIntegerDigitsAttribute() {
    NumberMinIntegerDigitsAttribute attr = (NumberMinIntegerDigitsAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "min-integer-digits");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }
View Full Code Here


   * Sets the value of ODFDOM attribute representation <code>NumberMinIntegerDigitsAttribute</code> , See {@odf.attribute number:min-integer-digits}
   *
   * @param numberMinIntegerDigitsValue   The type is <code>Integer</code>
   */
  public void setNumberMinIntegerDigitsAttribute(Integer numberMinIntegerDigitsValue) {
    NumberMinIntegerDigitsAttribute attr = new NumberMinIntegerDigitsAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setIntValue(numberMinIntegerDigitsValue.intValue());
  }
View Full Code Here

   * Receives the value of the ODFDOM attribute representation <code>NumberMinIntegerDigitsAttribute</code> , See {@odf.attribute number:min-integer-digits}
   *
   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getNumberMinIntegerDigitsAttribute() {
    NumberMinIntegerDigitsAttribute attr = (NumberMinIntegerDigitsAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "min-integer-digits");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }
View Full Code Here

   * Sets the value of ODFDOM attribute representation <code>NumberMinIntegerDigitsAttribute</code> , See {@odf.attribute number:min-integer-digits}
   *
   * @param numberMinIntegerDigitsValue   The type is <code>Integer</code>
   */
  public void setNumberMinIntegerDigitsAttribute(Integer numberMinIntegerDigitsValue) {
    NumberMinIntegerDigitsAttribute attr = new NumberMinIntegerDigitsAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setIntValue(numberMinIntegerDigitsValue.intValue());
  }
View Full Code Here

   * Receives the value of the ODFDOM attribute representation <code>NumberMinIntegerDigitsAttribute</code> , See {@odf.attribute number:min-integer-digits}
   *
   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getNumberMinIntegerDigitsAttribute() {
    NumberMinIntegerDigitsAttribute attr = (NumberMinIntegerDigitsAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "min-integer-digits");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }
View Full Code Here

   * Sets the value of ODFDOM attribute representation <code>NumberMinIntegerDigitsAttribute</code> , See {@odf.attribute number:min-integer-digits}
   *
   * @param numberMinIntegerDigitsValue   The type is <code>Integer</code>
   */
  public void setNumberMinIntegerDigitsAttribute(Integer numberMinIntegerDigitsValue) {
    NumberMinIntegerDigitsAttribute attr = new NumberMinIntegerDigitsAttribute((OdfFileDom) this.ownerDocument);
    setOdfAttribute(attr);
    attr.setIntValue(numberMinIntegerDigitsValue.intValue());
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.attribute.number.NumberMinIntegerDigitsAttribute

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.