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 net.sourceforge.jrefactory.parser.JavaParser;
12: import net.sourceforge.jrefactory.parser.JavaParserVisitor;
13:
14: /**
15: * A statement that is also an expression
16: *
17: * @author Mike Atkinson
18: * @since jRefactory 2.9.0, created October 16, 2003
19: */
20: public class ASTStatementExpression extends NamedNode {
21: //private String name = "";
22:
23: /**
24: * Constructor for the ASTStatementExpression node.
25: *
26: * @param identifier The id of this node (JJTSTATEMENTEXPRESSION).
27: */
28: public ASTStatementExpression(int identifier) {
29: super (identifier);
30: }
31:
32: /**
33: * Constructor for the ASTStatementExpression node.
34: *
35: * @param parser The JavaParser that created this ASTStatementExpression node.
36: * @param identifier The id of this node (JJTSTATEMENTEXPRESSION).
37: */
38: public ASTStatementExpression(JavaParser parser, int identifier) {
39: super (parser, identifier);
40: }
41:
42: /**
43: * Set the object's name
44: *
45: * @param newName the new name
46: */
47: //public void setName(String newName) {
48: // name = newName.intern();
49: //}
50:
51: /**
52: * Get the object's name
53: *
54: * @return the name
55: */
56: //public String getName() {
57: // return name;
58: //}
59:
60: /**
61: * Accept the visitor.
62: *
63: * @param visitor An implementation of JavaParserVisitor that processes the ASTStatementExpression node.
64: * @param data Some data being passed between the visitor methods.
65: * @return Usually the data parameter (possibly modified).
66: */
67: public Object jjtAccept(JavaParserVisitor visitor, Object data) {
68: return visitor.visit(this, data);
69: }
70: }
|