/**
  * Receives the value of the ODFDOM attribute representation <code>MetaRowCountAttribute</code> ,
  * See {@odf.attribute meta:row-count}
  *
  * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not
  *     set and no default value defined.
  */
 public Integer getMetaRowCountAttribute() {
   MetaRowCountAttribute attr =
       (MetaRowCountAttribute)
           getOdfAttribute(OdfName.get(OdfNamespace.get(OdfNamespaceNames.META), "row-count"));
   if (attr != null) {
     return Integer.valueOf(attr.intValue());
   }
   return null;
 }
 /**
  * Sets the value of ODFDOM attribute representation <code>MetaRowCountAttribute</code> , See
  * {@odf.attribute meta:row-count}
  *
  * @param metaRowCountValue The type is <code>Integer</code>
  */
 public void setMetaRowCountAttribute(Integer metaRowCountValue) {
   MetaRowCountAttribute attr = new MetaRowCountAttribute((OdfFileDom) this.ownerDocument);
   setOdfAttribute(attr);
   attr.setIntValue(metaRowCountValue.intValue());
 }