Package webit.script.loaders.impl.resources

Examples of webit.script.loaders.impl.resources.LazyResource


        this.loader = (Loader) engine.getComponent(loaderType);
    }

    public Resource get(String name) {
        if (this.timeout > 0) {
            return new LazyResource(this.loader.get(name), this.timeout);
        } else {
            return this.loader.get(name);
        }
    }
View Full Code Here

TOP

Related Classes of webit.script.loaders.impl.resources.LazyResource

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.