Package org.foray.fotree.fo.obj

Examples of org.foray.fotree.fo.obj.CharacterSequence4a


    /**
     * {@inheritDoc}
     */
    public String getMetadataValue() {
        /* Existence and casting verified at validateDescendants(). */
        final CharacterSequence4a text =
                (CharacterSequence4a) this.getChildAt(0);
        return text.getAreaTreeText(null).toString();
    }
View Full Code Here


            throws FoTreeException {
        if (! this.shouldCreateFOText()) {
            return;
        }
        final char[] charArray = this.textBuffer.toString().toCharArray();
        final CharacterSequence4a ft = new CharacterSequence4a(this, charArray);
        this.addTextNode(ft);
        this.textBuffer.setLength(0);
    }
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.obj.CharacterSequence4a

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.