Package webit.script.loaders.impl

Source Code of webit.script.loaders.impl.ClasspathLoader

// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.loaders.impl;

import webit.script.loaders.AbstractLoader;
import webit.script.loaders.Resource;
import webit.script.loaders.impl.resources.ClasspathResource;

/**
*
* @author Zqq
*/
public class ClasspathLoader extends AbstractLoader {

    public Resource get(String name) {
        return new ClasspathResource(getRealPath(name), encoding);
    }
}
TOP

Related Classes of webit.script.loaders.impl.ClasspathLoader

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.