getXPropertySet().setPropertyValue("BreakType", BreakType.PAGE_BEFORE);
else if(breakType == IParagraphProperties.BREAK_TYPE_PAGE_BOTH)
getXPropertySet().setPropertyValue("BreakType", BreakType.PAGE_BOTH);
}
catch(Exception exception) {
TextException textException = new TextException(exception.getMessage());
textException.initCause(exception);
throw textException;
}
}