Examples of traitColumnCount()


Examples of org.axsl.fo.fo.RegionBody.traitColumnCount()

        int numColumns = 0;
        final RegionBody body = this.traitGeneratedBy();
        if (fo.traitSpan(this) == Span.ALL) {
            numColumns = 1;
        } else {
            numColumns = body.traitColumnCount(this);
        }
        final MainRA main = (MainRA) this.getParent();
        final SpanRA spanArea = SpanRA.makeSpanArea(body, main, numColumns);
        return spanArea;
    }
View Full Code Here

Examples of org.foray.fotree.FObj.traitColumnCount()

        if (value().canEvalKeyword()) {
            final FoValue keyword = this.convertValueToFoValue(value());
            if (keyword == FoValue.INHERIT) {
                final FObj parent = fobj.effectiveParent(context);
                if (parent != null) {
                    return parent.traitColumnCount(context);
                }
            }
            return getValueNoInstance();
        }
        if (value().canEvalNumeric()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.