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