Package org.axsl.area

Examples of org.axsl.area.ListBlockArea


                getLayout().completeCurrentLineInBlock(
                        (NormalBlockArea) areaNode);
            }
        }

        final ListBlockArea blockArea = bcArea.makeListBlockArea(this.node,
                graftingPoint);

        final int numChildren = this.node.getChildCount();
        for (int i = listBlockPL.getProgress(); i < numChildren; i++) {
            final ListItem listItem = (ListItem) this.node.getChildAt(i);
View Full Code Here


            final GraftingPoint graftingPoint) throws AreaTreeException {
        if (! (areaNode instanceof ListBlockArea)) {
            throw new AreaTreeException("Illegal parent area for "
                    + "fo:list-item");
        }
        final ListBlockArea listBlockArea = (ListBlockArea) areaNode;

        if (getProgress() == FONodePL.START) {
            setProgress(0);
        }

        final ListItemArea group = listBlockArea.makeListItemArea(this.node,
                graftingPoint);

        /* Lay out the list-item-label inside the new list-item area. */
        final ListItemLabel label =
                (ListItemLabel) this.node.getChildAt(0);
View Full Code Here

TOP

Related Classes of org.axsl.area.ListBlockArea

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.