1 package jfun.yan.xml;2 3 import jfun.util.dict.Dict;4 5 /**6 * The result from xml tag compilation.7 * <p>8 * @author Ben Yu9 * Nov 10, 2005 11:36:15 PM10 */11 interface Stmt extends LocationAware, java.io.Serializable {12 Object run(Dict frame, Runtime runtime);13 Class getType();14 }15