1 package org.sapia.gumby.script;2 3 /**4 * @author Yanick Duchesne5 * 6 * <dl>7 * <dt><b>Copyright: </b>8 * <dd>Copyright © 2002-2005 <a HREF="http://www.sapia-oss.org">Sapia Open9 * Source Software </a>. All Rights Reserved.</dd>10 * </dt>11 * <dt><b>License: </b>12 * <dd>Read the license.txt file of the jar or visit the <a13 * HREF="http://www.sapia-oss.org/license.html">license page </a> at the Sapia14 * OSS web site</dd>15 * </dt>16 * </dl>17 */18 public interface ScriptConsts {19 20 public static final String KEY_CONTEXT = "RenderContext";21 public static final String KEY_ARGS = "Args";22 23 }24