Examples of booleanValue()


Examples of org.odftoolkit.odfdom.dom.attribute.db.DbIsEmptyAllowedAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbIsEmptyAllowedAttribute() {
    DbIsEmptyAllowedAttribute attr = (DbIsEmptyAllowedAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "is-empty-allowed");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbIsFirstRowHeaderLineAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbIsFirstRowHeaderLineAttribute() {
    DbIsFirstRowHeaderLineAttribute attr = (DbIsFirstRowHeaderLineAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "is-first-row-header-line");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbIsFirstRowHeaderLineAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbIsPasswordRequiredAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbIsPasswordRequiredAttribute() {
    DbIsPasswordRequiredAttribute attr = (DbIsPasswordRequiredAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "is-password-required");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbIsPasswordRequiredAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbIsTableNameLengthLimitedAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbIsTableNameLengthLimitedAttribute() {
    DbIsTableNameLengthLimitedAttribute attr = (DbIsTableNameLengthLimitedAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "is-table-name-length-limited");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbIsTableNameLengthLimitedAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbIsUniqueAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbIsUniqueAttribute() {
    DbIsUniqueAttribute attr = (DbIsUniqueAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "is-unique");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbParameterNameSubstitutionAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbParameterNameSubstitutionAttribute() {
    DbParameterNameSubstitutionAttribute attr = (DbParameterNameSubstitutionAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "parameter-name-substitution");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbParameterNameSubstitutionAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbShowDeletedAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbShowDeletedAttribute() {
    DbShowDeletedAttribute attr = (DbShowDeletedAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "show-deleted");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbShowDeletedAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbSuppressVersionColumnsAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbSuppressVersionColumnsAttribute() {
    DbSuppressVersionColumnsAttribute attr = (DbSuppressVersionColumnsAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "suppress-version-columns");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbSuppressVersionColumnsAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbUseCatalogAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbUseCatalogAttribute() {
    DbUseCatalogAttribute attr = (DbUseCatalogAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "use-catalog");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(DbUseCatalogAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.db.DbUseSystemUserAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getDbUseSystemUserAttribute() {
    DbUseSystemUserAttribute attr = (DbUseSystemUserAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "use-system-user");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    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.