Package org.foray.fotree.fo.prop

Examples of org.foray.fotree.fo.prop.PdPagePosition


        case PAGE_NUMBER_TREATMENT: {
            return new PdPageNumberTreatment(fobj, propertyFullName,
                    attributeValue);
        }
        case PAGE_POSITION: {
            return new PdPagePosition(fobj, propertyFullName, attributeValue);
        }
        case PAGE_WIDTH: {
            return new PdPageWidth(fobj, propertyFullName, attributeValue);
        }
        case PAUSE: {
View Full Code Here


    /**
     * Returns the page-position property.
     * @return The page-position property.
     */
    public FoValue getPagePosition() {
        final PdPagePosition property = (PdPagePosition) getProperty(
                FoProperty.PAGE_POSITION);
        if (property != null) {
            return property.getValue();
        }
        return PdPagePosition.getValueNoInstance();
    }
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.prop.PdPagePosition

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.