This commit is contained in:
nboyd%atg.com 2007-05-24 14:47:01 +00:00
Родитель 98ce4624b0
Коммит 4eb19ba1d3
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -132,14 +132,14 @@ public abstract class NativeFunction extends BaseFunction
/** /**
* Get parameter or variable name. * Get parameter or variable name.
* If <tt>index < {@link #getParamCount()}</tt>, then return the name of the * If <tt>index < {@link #getParamCount()}</tt>, then return the name of the
* corresponding parameter. Otherwise returm the name of variable. * corresponding parameter. Otherwise return the name of variable.
*/ */
protected abstract String getParamOrVarName(int index); protected abstract String getParamOrVarName(int index);
/** /**
* Get parameter or variable const-ness. * Get parameter or variable const-ness.
* If <tt>index < {@link #getParamCount()}</tt>, then return the const-ness * If <tt>index < {@link #getParamCount()}</tt>, then return the const-ness
* of the corresponding parameter. Otherwise returm whether the variable is * of the corresponding parameter. Otherwise return whether the variable is
* const. * const.
*/ */
protected abstract boolean getParamOrVarConst(int index); protected abstract boolean getParamOrVarConst(int index);