View Javadoc

1   package org.glassbox.dotparser;
2   
3   
4   public class ASTideq_stmt extends SimpleNode {
5       private String _key;
6       private String _value;
7   
8       public ASTideq_stmt(int id) {
9   	super(id);
10      }
11      
12      public ASTideq_stmt(DOTParser p, int id) {
13  	super(p, id);
14      }
15      
16      protected void setKey(String key) {
17  	_key = key;
18      }
19  
20      protected void setValue(String value) {
21  	_value = value;
22      }
23  
24      public String getKey() {
25  	return _key;
26      }
27  
28      public String getValue() {
29  	return _value;
30      }
31  
32      public String toString() {
33  	return "ideq_stmt: "+_key+" = "+_value;
34      }
35  
36      /*** Accept the visitor. **/
37      public Object jjtAccept(DOTParserVisitor visitor, Object data) {
38  	return visitor.visit(this, data);
39      }
40  }