Examples of intValue()


Examples of org.odftoolkit.odfdom.dom.attribute.text.TextDisplayLevelsAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextDisplayLevelsAttribute() {
    TextDisplayLevelsAttribute attr = (TextDisplayLevelsAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "display-levels");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return Integer.valueOf(TextDisplayLevelsAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextDisplayOutlineLevelAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextDisplayOutlineLevelAttribute() {
    TextDisplayOutlineLevelAttribute attr = (TextDisplayOutlineLevelAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "display-outline-level");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextIncrementAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextIncrementAttribute() {
    TextIncrementAttribute attr = (TextIncrementAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "increment");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextLevelAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextLevelAttribute() {
    TextLevelAttribute attr = (TextLevelAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "level");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return Integer.valueOf(TextLevelAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextLineNumberAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextLineNumberAttribute() {
    TextLineNumberAttribute attr = (TextLineNumberAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "line-number");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextOutlineLevelAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextOutlineLevelAttribute() {
    TextOutlineLevelAttribute attr = (TextOutlineLevelAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "outline-level");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextPageAdjustAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextPageAdjustAttribute() {
    TextPageAdjustAttribute attr = (TextPageAdjustAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "page-adjust");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextRowNumberAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextRowNumberAttribute() {
    TextRowNumberAttribute attr = (TextRowNumberAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "row-number");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextStartValueAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextStartValueAttribute() {
    TextStartValueAttribute attr = (TextStartValueAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "start-value");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextTabRefAttribute.intValue()

   * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Integer getTextTabRefAttribute() {
    TextTabRefAttribute attr = (TextTabRefAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "tab-ref");
    if (attr != null) {
      return Integer.valueOf(attr.intValue());
    }
    return null;
  }

  /**
 
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.