* @param presentationActionValue the <code>String</code> value of <code>PresentationActionAttribute</code>, see {@odf.attribute presentation:action} at specification
* @param scriptEventNameValue the <code>String</code> value of <code>ScriptEventNameAttribute</code>, see {@odf.attribute script:event-name} at specification
* @return the element {@odf.element presentation:event-listener}
*/
public PresentationEventListenerElement newPresentationEventListenerElement(String presentationActionValue, String scriptEventNameValue) {
PresentationEventListenerElement presentationEventListener = ((OdfFileDom) this.ownerDocument).newOdfElement(PresentationEventListenerElement.class);
presentationEventListener.setPresentationActionAttribute(presentationActionValue);
presentationEventListener.setScriptEventNameAttribute(scriptEventNameValue);
this.appendChild(presentationEventListener);
return presentationEventListener;
}