/**
  * Sets the value of ODFDOM attribute representation <code>DbParameterNameSubstitutionAttribute
  * </code> , See {@odf.attribute db:parameter-name-substitution}
  *
  * @param dbParameterNameSubstitutionValue The type is <code>Boolean</code>
  */
 public void setDbParameterNameSubstitutionAttribute(Boolean dbParameterNameSubstitutionValue) {
   DbParameterNameSubstitutionAttribute attr =
       new DbParameterNameSubstitutionAttribute((OdfFileDom) this.ownerDocument);
   setOdfAttribute(attr);
   attr.setBooleanValue(dbParameterNameSubstitutionValue.booleanValue());
 }