lastRTFElement = userProperty;
currentRTFElement = currentRTFElement.getRtfElementParent();
}
protected void startAnnotation(String content) throws IOException {
RTFAnnotation annotation = new RTFAnnotation();
if (startGroup != null) {
annotation.addRTFString(startGroup);
startGroup = null;
}
annotation.addRTFString(content);
getCurrentRTFElement().addRTFElement(annotation);
currentRTFElement = annotation;
levelOfAnnotation = this.currentLevel;
}