Package greed.util

Examples of greed.util.ResourcePath


* Greed is good! Cheers!
*/
public class TemplateFileParser extends ExpressionParser<ResourcePath> {
    @Override
    public ResourcePath raw(String templatePath) {
        return new ResourcePath(templatePath, false);
    }
View Full Code Here


    public ResourcePath raw(String templatePath) {
        return new ResourcePath(templatePath, false);
    }

    protected ResourcePath builtin(String templatePath) {
        return new ResourcePath(Configuration.TEMPLATE_PATH + "/" + templatePath, true);
    }
View Full Code Here

TOP

Related Classes of greed.util.ResourcePath

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.