/**
  * Sets the value of ODFDOM attribute representation <code>TextPageAdjustAttribute</code> , See
  * {@odf.attribute text:page-adjust}
  *
  * @param textPageAdjustValue The type is <code>Integer</code>
  */
 public void setTextPageAdjustAttribute(Integer textPageAdjustValue) {
   TextPageAdjustAttribute attr = new TextPageAdjustAttribute((OdfFileDom) this.ownerDocument);
   setOdfAttribute(attr);
   attr.setIntValue(textPageAdjustValue.intValue());
 }