/** * Clear this Context. * * @see org.apache.commons.scxml.Context#reset() */ public void reset() { super.reset(); getVars().put("_builtin", new Builtin()); }
/** * Set the variables map. * * @param vars The new variables map. * @see org.apache.commons.jexl.JexlContext#setVars(Map) * @see org.apache.commons.scxml.env.SimpleContext#setVars(Map) */ public void setVars(final Map vars) { super.setVars(vars); getVars().put("_builtin", new Builtin()); }