public OMText createOMText(OMContainer parent, String text, int type) {
return new OMTextImpl(parent, text, type, this);
}
public OMText createOMText(OMContainer parent, char[] charArary, int type) {
return new OMTextImpl(parent, charArary, type, this);
}