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