01: /*
02: * Author: Mike Atkinson
03: *
04: * This software has been developed under the copyleft
05: * rules of the GNU General Public License. Please
06: * consult the GNU General Public License for more
07: * details about use and distribution of this software.
08: */
09: package net.sourceforge.jrefactory.ast;
10:
11: import java.util.*;
12: import net.sourceforge.jrefactory.parser.JavaParser;
13: import net.sourceforge.jrefactory.parser.JavaParserVisitor;
14:
15: /**
16: * Description of the Class
17: *
18: * @author Mike Atkinson
19: * @since jRefactory 2.9.0, created October 16, 2003
20: */
21: public class ASTArgumentList extends SimpleNode {
22: /**
23: * Constructor for the ASTArgumentList node.
24: *
25: * @param identifier Description of Parameter
26: */
27: public ASTArgumentList(int identifier) {
28: super (identifier);
29: }
30:
31: /**
32: * Constructor for the ASTArgumentList node.
33: *
34: * @param p Description of Parameter
35: * @param identifier Description of Parameter
36: */
37: public ASTArgumentList(JavaParser parser, int identifier) {
38: super (parser, identifier);
39: }
40:
41: /**
42: * Accept the visitor. *
43: *
44: * @param visitor Description of Parameter
45: * @param data Description of Parameter
46: * @return Description of the Returned Value
47: */
48: public Object jjtAccept(JavaParserVisitor visitor, Object data) {
49: return visitor.visit(this, data);
50: }
51: }
|