Package org.foray.fotree

Examples of org.foray.fotree.DescendantIterator


                node.throwException(this.getFullName()
                        + " may not have an fo:marker child.");
            }
            /* No descendant can be a block-container that is absolutely
             * positioned. */
            final DescendantIterator iterator = node.getDescendantIterator();
            while (iterator.hasNext()) {
                final FObj descendant = iterator.next();
                if (descendant instanceof BlockContainer) {
                    final BlockContainer blockContainer
                            = (BlockContainer) descendant;
                    final AbsolutePosition absPosition
                            = blockContainer.traitAbsolutePosition(null);
View Full Code Here

TOP

Related Classes of org.foray.fotree.DescendantIterator

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.