18 package com.mysql.clusterj.jdbc.antlr.node;
20 import org.antlr.runtime.Token;
22 import com.mysql.clusterj.ClusterJFatalInternalException;
23 import com.mysql.clusterj.jdbc.antlr.MySQL51Parser;
40 protected String getParameterName(
int child) {
41 if (getChild(child).getType() == MySQL51Parser.VALUE_PLACEHOLDER) {
42 return getChild(child).getText();
48 protected String getPropertyName() {
49 if (getChild(0).getType() == MySQL51Parser.FIELD) {
50 return getChild(0).getChild(0).getText();