Interface TagScriptEvaluator
public interface TagScriptEvaluator
-
Method Summary
Modifier and TypeMethodDescriptionReturns the script ids that are defined on this evaluator.void
Executes the script defined for the given id against the source object provided.
-
Method Details
-
getDefinedIds
Returns the script ids that are defined on this evaluator. Primarily for information purposes, since the evaluator doesn't mind if invoke is called for non-defined ids. -
invoke
void invoke(String id, Object source, TagPath sourcePath, TagScriptMonitor status, Object... params) Executes the script defined for the given id against the source object provided.
-