* @see org.apache.axiom.om.OMFactory#createOMText(OMContainer, String,
* String, boolean)
*/
public OMText createOMText(OMContainer parent, String s, String mimeType,
boolean optimize) {
TextImpl text = new TextImpl((DocumentImpl) ((ElementImpl) parent)
.getOwnerDocument(), s, mimeType, optimize, this);
parent.addChild(text);
return text;
}