1 package org.sapia.gumby.script;2 3 import org.sapia.gumby.RenderContext;4 5 /**6 * @author Yanick Duchesne7 * 8 * <dl>9 * <dt><b>Copyright: </b>10 * <dd>Copyright © 2002-2005 <a HREF="http://www.sapia-oss.org">Sapia Open11 * Source Software </a>. All Rights Reserved.</dd>12 * </dt>13 * <dt><b>License: </b>14 * <dd>Read the license.txt file of the jar or visit the <a15 * HREF="http://www.sapia-oss.org/license.html">license page </a> at the Sapia16 * OSS web site</dd>17 * </dt>18 * </dl>19 */20 public interface Script {21 22 public Object execute(RenderContext ctx, Object [] args) throws Exception ;23 24 }25