Package org.foray.fotree.fo.obj

Examples of org.foray.fotree.fo.obj.Leader


        case LAYOUT_MASTER_SET: {
            final Root root = parentRoot(enumeration, parent, locator);
            return new LayoutMasterSet(root, propertyList);
        }
        case LEADER: {
            return new Leader(parent, propertyList);
        }
        case LIST_BLOCK: {
            return new ListBlock(parent, propertyList);
        }
        case LIST_ITEM: {
View Full Code Here


        if (! (leafToTest instanceof CharacterSequence4a)) {
            return null;
        }
        /* If either is within a Leader, they both need to be in the same one.
         */
        final Leader thisLeader = effectiveParent.getNearestLeader(context);
        final Leader testLeader = leafToTest.effectiveParent(context)
                .getNearestLeader(context);
        if (thisLeader != testLeader) {
            return null;
        }
        final Block thisBlock =
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.obj.Leader

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.