* Receives the value of the ODFDOM attribute representation <code>DrawChainNextNameAttribute</code> , See {@odf.attribute draw:chain-next-name}
*
* @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public String getDrawChainNextNameAttribute() {
DrawChainNextNameAttribute attr = (DrawChainNextNameAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "chain-next-name");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return null;
}