* Receives the value of the ODFDOM attribute representation <code>TableAcceptanceStateAttribute</code> , See {@odf.attribute table:acceptance-state}
*
* @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public String getTableAcceptanceStateAttribute() {
TableAcceptanceStateAttribute attr = (TableAcceptanceStateAttribute) getOdfAttribute(OdfDocumentNamespace.TABLE, "acceptance-state");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return TableAcceptanceStateAttribute.DEFAULT_VALUE;
}