01: package com.mockrunner.tag;
02:
03: /**
04: * Implementations of this interface can be used to simulate
05: * scriptlets and EL expressions as tag childs. When the childs
06: * of a tag are evaluated, the <code>evaluate</code> method is
07: * called and the result will become part of the text body of a
08: * tag (in fact the <code>toString</code> method is called on the
09: * returned object).
10: */
11: public interface DynamicChild {
12: public Object evaluate();
13: }
|