Package org.foray.fotree.fo.prop

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


     * issues.
     * @return The font-selection-strategy property.
     */
    public FoValue traitFontSelectionStrategy(final FObj fobj,
            final FoContext context) {
        final PdFontSelectionStrategy property =
                (PdFontSelectionStrategy) getProperty(
                FoProperty.FONT_SELECTION_STRATEGY);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdFontSelectionStrategy.getValueNoInstance(context, fobj);
    }
View Full Code Here


        }
        case FONT_FAMILY: {
            return new PdFontFamily(fobj, propertyFullName, attributeValue);
        }
        case FONT_SELECTION_STRATEGY: {
            return new PdFontSelectionStrategy(fobj, propertyFullName,
                    attributeValue);
        }
        case FONT_SIZE: {
            return new PdFontSize(fobj, propertyFullName, attributeValue);
        }
View Full Code Here

TOP

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

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.