Home
last modified time | relevance | path

Searched refs:methodFinder (Results 1 – 3 of 3) sorted by relevance

/external/escapevelocity/src/main/java/com/google/escapevelocity/
DEvaluationContext.java50 private final MethodFinder methodFinder; field in EvaluationContext.PlainEvaluationContext
52 PlainEvaluationContext(Map<String, ?> vars, MethodFinder methodFinder) { in PlainEvaluationContext() argument
54 this.methodFinder = methodFinder; in PlainEvaluationContext()
82 return methodFinder.publicMethodsWithName(startClass, name); in publicMethodsWithName()
DTemplate.java44 private final MethodFinder methodFinder = new MethodFinder(); field in Template
130 EvaluationContext evaluationContext = new PlainEvaluationContext(vars, methodFinder); in evaluate()
/external/escapevelocity/src/test/java/com/google/escapevelocity/
DMethodFinderTest.java65 MethodFinder methodFinder = new MethodFinder(); in publicMethodsWithName() local
66 Set<Method> methods = methodFinder.publicMethodsWithName(listClass, "remove"); in publicMethodsWithName()
73 Set<Method> methods2 = methodFinder.publicMethodsWithName(listClass, "remove"); in publicMethodsWithName()
83 MethodFinder methodFinder = new MethodFinder(); in publicMethodsWithName_Nonexistent() local
84 Set<Method> methods = methodFinder.publicMethodsWithName(listClass, "nonexistentMethod"); in publicMethodsWithName_Nonexistent()