com.mitchellbosecke.pebble.attributes.AttributeResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pebble Show documentation
Show all versions of pebble Show documentation
Templating engine for Java.
package com.mitchellbosecke.pebble.attributes;
import com.mitchellbosecke.pebble.node.ArgumentsNode;
import com.mitchellbosecke.pebble.template.EvaluationContextImpl;
public interface AttributeResolver {
ResolvedAttribute resolve(Object instance,
Object attributeNameValue,
Object[] argumentValues,
ArgumentsNode args,
EvaluationContextImpl context,
String filename,
int lineNumber);
}