Source code: com/port80/graph/dot/parser/ASTAttributeStatement.java
1 /* Generated By:JJTree: Do not edit this line. ASTAttributeStatement.java */
2
3 //
4 // Copyright(c) 2002, Chris Leung
5 //
6
7 package com.port80.graph.dot.parser;
8
9 public class ASTAttributeStatement extends SimpleNode {
10
11 public ASTAttributeStatement(int id) {
12 super(id);
13 }
14
15 public ASTAttributeStatement(DotParser p, int id) {
16 super(p, id);
17 }
18
19
20 /** Accept the visitor. **/
21 public Object jjtAccept(DotParserVisitor visitor, Object data) {
22 return visitor.visit(this, data);
23 }
24
25 ////////////////////////////////////////////////////////////////////////
26
27 private int attrType = 0;
28
29 ////////////////////////////////////////////////////////////////////////
30
31 public void init(int type) {
32 attrType = type;
33 }
34 public int getAttrType() {
35 return attrType;
36 }
37
38 ////////////////////////////////////////////////////////////////////////
39
40 }