Package org.foray.fotree.fo.prop

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


        }
        case VISIBILITY: {
            return new PdVisibility(fobj, propertyFullName, attributeValue);
        }
        case VOICE_FAMILY: {
            return new PdVoiceFamily(fobj, propertyFullName, attributeValue);
        }
        case VOLUME: {
            return new PdVolume(fobj, propertyFullName, attributeValue);
        }
        case WHITE_SPACE: {
View Full Code Here


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The voice-family property.
     */
    public String[] getVoiceFamily(final FObj fobj, final FoContext context) {
        final PdVoiceFamily property = (PdVoiceFamily) getProperty(
                FoProperty.VOICE_FAMILY);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdVoiceFamily.getValueNoInstance(context, fobj);
    }
View Full Code Here

TOP

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

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.