Package org.axsl.fo

Examples of org.axsl.fo.FoLineNonText


            final FontConsumer fontConsumer = areaTree.getFontConsumer();
            lb = textServer.provideEagerLineBreaker(null,
                    this.layout, fontConsumer);
        }
        int status = 0;
        final FoLineNonText contextAware = nonText.getContextWrapper(
                foContext);
        try {
            status = lb.processLineContent(contextAware, -1, -1, lineArea);
        } catch (final TextException e) {
            final Fo generatedBy = lineArea.traitGeneratedBy();
View Full Code Here


        final Fo node = this.getFONode();
        LineArea lineArea = inputLineArea;
        if (! (node instanceof FoLineNonText)) {
            return Status.UNKNOWN;
        }
        final FoLineNonText nonText = (FoLineNonText) node;
        // this should start a new page
        if (lineArea == null) {
            return Status.AREA_FULL_SOME;
        }
        if (addNonTextItemToLine(lineArea, nonText, foContext) == 1) {
View Full Code Here

        final LineArea lineArea = (LineArea) lineOutput;
        GraftingPoint graftingPoint = null;

        LineNonText nonTextToUse = nonText;
        if (nonTextToUse instanceof org.axsl.fo.FoLineNonText) {
            final FoLineNonText foLineNonText = (FoLineNonText) nonTextToUse;
            graftingPoint = foLineNonText.getGraftingPoint();
            nonTextToUse = foLineNonText.getWrapped();
        }

        LineContentFactory factory = lineArea;
        if (this.areaStack.size() > 0) {
            factory = this.areaStack.peek();
View Full Code Here

TOP

Related Classes of org.axsl.fo.FoLineNonText

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.