* <A NAME="routineInvocation">routineInvocation</A>
*/
final public ValueNode routineInvocation() throws ParseException, StandardException {
Vector parameterList = new Vector();
TableName routineName;
MethodCallNode methodNode;
routineName = qualifiedName(Limits.MAX_IDENTIFIER_LENGTH);
methodCallParameterList(parameterList);
methodNode = (MethodCallNode) nodeFactory.getNode(
C_NodeTypes.STATIC_METHOD_CALL_NODE,
routineName,
null,
getContextManager());
methodNode.addParms(parameterList);
/*
** Assume this is being returned to the SQL domain. If it turns
** out that this is being returned to the Java domain, we will
** get rid of this node.