Examples of PdSpeechRate


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

        case SPEAK_PUNCTUATION: {
            return new PdSpeakPunctuation(fobj, propertyFullName,
                    attributeValue);
        }
        case SPEECH_RATE: {
            return new PdSpeechRate(fobj, propertyFullName, attributeValue);
        }
        case SRC: {
            return new PdSrc(fobj, propertyFullName, attributeValue);
        }
        case START_INDENT: {
View Full Code Here

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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The speech-rate property.
     */
    public double traitSpeechRate(final FObj fobj, final FoContext context) {
        final PdSpeechRate property = (PdSpeechRate) getProperty(
                FoProperty.SPEECH_RATE);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdSpeechRate.getValueNoInstance(context, fobj);
    }
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.