*
* @param stylePageLayoutNameValue the <code>String</code> value of <code>StylePageLayoutNameAttribute</code>, see {@odf.attribute style:page-layout-name} at specification
* @return the element {@odf.element style:handout-master}
*/
public StyleHandoutMasterElement newStyleHandoutMasterElement(String stylePageLayoutNameValue) {
StyleHandoutMasterElement styleHandoutMaster = ((OdfFileDom) this.ownerDocument).newOdfElement(StyleHandoutMasterElement.class);
styleHandoutMaster.setStylePageLayoutNameAttribute(stylePageLayoutNameValue);
this.appendChild(styleHandoutMaster);
return styleHandoutMaster;
}