Examples of PdAbsolutePosition


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

     * issues.
     * @return The absolute-position property.
     */
    public FoValue traitAbsolutePosition(final FObj fobj,
            final FoContext context) {
        final PdAbsolutePosition property = (PdAbsolutePosition) getProperty(
                FoProperty.ABSOLUTE_POSITION);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        // Try the shorthand.
        final PdPosition position = (PdPosition) getProperty(
                FoProperty.POSITION);
        if (position != null) {
View Full Code Here

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

            throw new PropertyException("Invalid property for fo namespace: "
                    + propertyFullName);
        }
        switch (enumeration) {
        case ABSOLUTE_POSITION: {
            return new PdAbsolutePosition(fobj, propertyFullName,
                    attributeValue);
        }
        case ACTIVE_STATE: {
            return new PdActiveState(fobj, propertyFullName, attributeValue);
        }
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.