01: package org.wings.macro; 02: 03: /** 04: * <code>Step<code>. 05: * <p/> 06: * User: rrd 07: * Date: 13.08.2007 08: * Time: 10:52:17 09: * 10: * @author rrd 11: * @version $Id 12: */ 13: public interface Instruction { 14: 15: void execute(MacroContext ctx); 16: }