Package com.createjs.soundjs.client.impl

Examples of com.createjs.soundjs.client.impl.HTMLAudioPluginImpl


     * The currently active plugin. If this is null, then no plugin could be initialized. If no plugin was specified,
     * only the HTMLAudioPlugin is tested.
     * @return The active plugin.
     */
    public static final HTMLAudioPlugin getActivePlugin() {
        HTMLAudioPluginImpl overlay = SoundJSImpl.getActivePlugin(); // warning: possible type cast exception if using
        return (overlay != null) ? new HTMLAudioPlugin(overlay) : null;       // different plugins
    }
View Full Code Here

TOP

Related Classes of com.createjs.soundjs.client.impl.HTMLAudioPluginImpl

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.