Package org.foray.fotree.fo.prop

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


                getProperty(FoProperty.FONT_SIZE_ADJUST);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        // Check the shorthand.
        final PdFont fontProperty = (PdFont) getProperty(FoProperty.FONT);
        if (fontProperty != null) {
            /* If the shorthand exists, the effect of it is to set
             * font-size-adjust to its initial value. */
            return PdFontSizeAdjust.getInitialValue();
        }
View Full Code Here


        case FLOW_NAME_REFERENCE: {
            return new PdFlowNameReference(fobj, propertyFullName,
                    attributeValue);
        }
        case FONT: {
            return new PdFont(fobj, propertyFullName, attributeValue);
        }
        case FONT_FAMILY: {
            return new PdFontFamily(fobj, propertyFullName, attributeValue);
        }
        case FONT_SELECTION_STRATEGY: {
View Full Code Here

TOP

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

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.