Examples of PdPagePosition


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

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

    /**
     * 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
Copyright © 2018 www.massapi.com. 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.