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