Author: sebb Date: Sat Aug 1 02:30:59 2009 New Revision: 799788 URL: http://svn.apache.org/viewvc?rev=799788&view=rev Log: Javadoc correction (standardise on name, rather than key)
Modified: jakarta/bsf/trunk/bsf3/bsf-api/src/main/java/javax/script/ScriptContext.java Modified: jakarta/bsf/trunk/bsf3/bsf-api/src/main/java/javax/script/ScriptContext.java URL: http://svn.apache.org/viewvc/jakarta/bsf/trunk/bsf3/bsf-api/src/main/java/javax/script/ScriptContext.java?rev=799788&r1=799787&r2=799788&view=diff ============================================================================== --- jakarta/bsf/trunk/bsf3/bsf-api/src/main/java/javax/script/ScriptContext.java (original) +++ jakarta/bsf/trunk/bsf3/bsf-api/src/main/java/javax/script/ScriptContext.java Sat Aug 1 02:30:59 2009 @@ -147,14 +147,14 @@ * Associates a specified value with the specifed name in the * specified scope. * - * @param key the name of the attribute + * @param name the name of the attribute * @param value the value of the attribute * @param scope the scope * @throws IllegalArgumentException if the name is <tt>null</tt> or the * scope is invalid * @throws NullPointerException if the name is <tt>null</tt>. */ - public void setAttribute(String key,Object value,int scope); + public void setAttribute(String name, Object value, int scope); /** * Associates the specified Bindings with the specified scope. --------------------------------------------------------------------- To unsubscribe, e-mail: bsf-dev-unsubscr...@jakarta.apache.org For additional commands, e-mail: bsf-dev-h...@jakarta.apache.org