Package org.axsl.fo.fo

Examples of org.axsl.fo.fo.Region


     * Returns the extent trait for this area.
     * @return The extent trait for this area.
     */
    public int traitExtent() {
        /* TODO: We can do better than this. */
        final Region generatedBy = traitGeneratedBy();
        if (generatedBy instanceof RegionBefore) {
            return ((RegionBefore) generatedBy).traitExtent();
        }
        if (generatedBy instanceof RegionAfter) {
            return ((RegionAfter) generatedBy).traitExtent();
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.Region

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.