1 22 23 24 package org.xquark.xquery.parser; 25 import java.util.ArrayList ; 26 27 public abstract class AggregateFunctionCall extends PrimitiveFunctionCall { 28 29 private static final String RCSRevision = "$Revision: 1.2 $"; 30 private static final String RCSName = "$Name: $"; 31 32 36 public void accept(ParserVisitor visitor) throws XQueryException { 37 visitor.visit(this); 38 } 39 40 44 public AggregateFunctionCall(QName name,ArrayList arguments) throws XQueryException { 45 super(name,arguments); 46 } 47 48 } 49 50 51 52 | Popular Tags |