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