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