* declareVariable method of this class.
*/
public VariableDeclaration bindVariable(int fingerprint) throws StaticError {
VariableDeclaration var = (VariableDeclaration)variables.get(new Integer(fingerprint));
if (var==null) {
throw new StaticError("Undeclared variable in query");
} else {
return var;
}