Package org.axsl.common.value

Examples of org.axsl.common.value.Span


        /* The next cut of this method should also inspect the FO to see
         * whether the area to be returned ought not to be the footnote
         * or before-float reference area.*/
        this.isNewSpanArea = false;

        Span span = Span.NONE;
        if (fo instanceof Block) {
            span = ((Block) fo).traitSpan(this);
        } else if (fo instanceof BlockContainer) {
            span = ((BlockContainer) fo).traitSpan(this);
        }
View Full Code Here


        if (spanArea.isBalanced()) {
            return false;
        }

        Span span = Span.NONE;
        if (fo instanceof Block) {
            span = ((Block) fo).traitSpan(this);
        } else if (fo instanceof BlockContainer) {
            span = ((BlockContainer) fo).traitSpan(this);
        }
View Full Code Here

TOP

Related Classes of org.axsl.common.value.Span

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.