Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The pitch-range property.
     */
    public double traitPitchRange(final FObj fobj, final FoContext context) {
        final AbstractAudioDial property = (AbstractAudioDial) getProperty(
                FoProperty.PITCH_RANGE);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return AbstractAudioDial.getValueNoInstance(context, fobj,
                FoProperty.PITCH_RANGE);
    }
View Full Code Here


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The richness property.
     */
    public double traitRichness(final FObj fobj, final FoContext context) {
        final AbstractAudioDial property = (AbstractAudioDial) getProperty(
                FoProperty.RICHNESS);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return AbstractAudioDial.getValueNoInstance(context, fobj,
                FoProperty.RICHNESS);
    }
View Full Code Here

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The stress property.
     */
    public double traitStress(final FObj fobj, final FoContext context) {
        final AbstractAudioDial property = (AbstractAudioDial) getProperty(
                FoProperty.STRESS);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return AbstractAudioDial.getValueNoInstance(context, fobj,
                FoProperty.STRESS);
    }
View Full Code Here

TOP

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

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.