Package net.sourceforge.rtf.document

Examples of net.sourceforge.rtf.document.RTFEndBookmark


     * @param content
     *            RTF end bookmark keyword <b>\bkmend</b>.
     * @throws IOException
     */
    protected void endBookmark(String content) throws IOException {
        RTFEndBookmark bookmark = new RTFEndBookmark();
        if (startGroup != null) {
            bookmark.addRTFString(startGroup);
            startGroup = null;
        }
        bookmark.addRTFString(content);
        getCurrentRTFElement().addRTFElement(bookmark);
        lastRTFElement = bookmark;
    }
View Full Code Here

TOP

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

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.