/**
  * Sets the value of ODFDOM attribute representation <code>TextIndexNameAttribute</code> , See
  * {@odf.attribute text:index-name}
  *
  * @param textIndexNameValue The type is <code>String</code>
  */
 public void setTextIndexNameAttribute(String textIndexNameValue) {
   TextIndexNameAttribute attr = new TextIndexNameAttribute((OdfFileDom) this.ownerDocument);
   setOdfAttribute(attr);
   attr.setValue(textIndexNameValue);
 }