Searched refs:argNum (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFunction2Args.java76 * @param argNum The argument number index.
78 * @throws WrongNumberArgsException If the argNum parameter is greater than 1.
80 public void setArg(Expression arg, int argNum) argument
84 // System.out.println("argNum: "+argNum);
85 if (argNum == 0)
86 super.setArg(arg, argNum);
87 else if (1 == argNum)
100 * @param argNum The number of arguments that is being passed to the function.
104 public void checkNumberArgs(int argNum) throw argument
[all...]
H A DFunction3Args.java75 * @param argNum The argument number index.
77 * @throws WrongNumberArgsException If the argNum parameter is greater than 2.
79 public void setArg(Expression arg, int argNum) argument
83 if (argNum < 2)
84 super.setArg(arg, argNum);
85 else if (2 == argNum)
98 * @param argNum The number of arguments that is being passed to the function.
102 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
104 if (argNum != 3)
H A DFunctionOneArg.java58 * @param argNum The argument number index.
60 * @throws WrongNumberArgsException If the argNum parameter is greater than 0.
62 public void setArg(Expression arg, int argNum) argument
66 if (0 == argNum)
79 * @param argNum The number of arguments that is being passed to the function.
83 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
85 if (argNum != 1)
H A DFunction.java52 * @param argNum The argument number index.
54 * @throws WrongNumberArgsException If the argNum parameter is beyond what
57 public void setArg(Expression arg, int argNum) argument
70 * @param argNum The number of arguments that is being passed to the function.
74 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
76 if (argNum != 0)
H A DFunctionMultiArgs.java59 * @param argNum The argument number index.
64 public void setArg(Expression arg, int argNum) argument
68 if (argNum < 3)
69 super.setArg(arg, argNum);
118 * @param argNum The number of arguments that is being passed to the function.
122 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{} argument
H A DFuncConcat.java73 * @param argNum The number of arguments that is being passed to the function.
77 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
79 if (argNum < 2)
H A DFuncSubstring.java107 * @param argNum The number of arguments that is being passed to the function.
111 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
113 if (argNum < 2)
H A DFunctionDef1Arg.java139 * @param argNum The number of arguments that is being passed to the function.
143 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
145 if (argNum > 1)
H A DFuncExtFunction.java229 * @param argNum The argument number index.
231 * @throws WrongNumberArgsException If the argNum parameter is beyond what
234 public void setArg(Expression arg, int argNum) argument
245 * @param argNum The number of arguments that is being passed to the function.
249 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{} argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalogEntry.java222 * @param argNum The argument number (arguments are numbered from 0).
223 * @return The specified argument or null if an invalid argNum is
226 public String getEntryArg(int argNum) { argument
228 String arg = (String) args.get(argNum);
244 * @param argNum The argument number (arguments are numbered from 0).
248 public void setEntryArg(int argNum, String newspec) argument
250 args.set(argNum, newspec);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DCompoundType.java2341 private String makeArgName (int argNum, Type type) { argument
2342 return "arg" + argNum;

Completed in 90 milliseconds