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