Package net.sourceforge.rtf.document

Examples of net.sourceforge.rtf.document.RTFAnnotation


        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;
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.rtf.document.RTFAnnotation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.