Examples of PdPitch


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

        }
        case PAUSE_BEFORE: {
            return new PdPauseBefore(fobj, propertyFullName, attributeValue);
        }
        case PITCH: {
            return new PdPitch(fobj, propertyFullName, attributeValue);
        }
        case PITCH_RANGE: {
            return new PdPitchRange(fobj, propertyFullName, attributeValue);
        }
        case PLAY_DURING: {
View Full Code Here

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

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