Examples of PdPlayDuring


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

        }
        case PITCH_RANGE: {
            return new PdPitchRange(fobj, propertyFullName, attributeValue);
        }
        case PLAY_DURING: {
            return new PdPlayDuring(fobj, propertyFullName, attributeValue);
        }
        case POSITION: {
            return new PdPosition(fobj, propertyFullName, attributeValue);
        }
        case PRECEDENCE: {
View Full Code Here

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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The play-during property.
     */
    public String traitPlayDuring(final FObj fobj, final FoContext context) {
        final PdPlayDuring property = (PdPlayDuring) getProperty(
                FoProperty.PLAY_DURING);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdPlayDuring.getValueNoInstance();
    }
View Full Code Here

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

    /**
     * Returns the play-during.mix property.
     * @return The play-during.mix property.
     */
    public boolean traitPlayDuringMix() {
        final PdPlayDuring property = (PdPlayDuring) getProperty(
                FoProperty.PLAY_DURING);
        if (property != null) {
            return property.getMix();
        }
        return PdPlayDuring.getMixNoInstance();
    }
View Full Code Here

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

    /**
     * Returns the play-during.repeat property.
     * @return The play-during.repeat property.
     */
    public boolean traitPlayDuringRepeat() {
        final PdPlayDuring property = (PdPlayDuring) getProperty(
                FoProperty.PLAY_DURING);
        if (property != null) {
            return property.getRepeat();
        }
        return PdPlayDuring.getRepeatNoInstance();
    }
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.