/**
  * Sets the value of ODFDOM attribute representation <code>TextUseObjectsAttribute</code> , See
  * {@odf.attribute text:use-objects}
  *
  * @param textUseObjectsValue The type is <code>Boolean</code>
  */
 public void setTextUseObjectsAttribute(Boolean textUseObjectsValue) {
   TextUseObjectsAttribute attr = new TextUseObjectsAttribute((OdfFileDom) this.ownerDocument);
   setOdfAttribute(attr);
   attr.setBooleanValue(textUseObjectsValue.booleanValue());
 }