1
2
3 package org.glassbox.dotparser;
4
5 public interface DOTParserTreeConstants
6 {
7 public int JJTGRAPH = 0;
8 public int JJTSTMT_LIST = 1;
9 public int JJTSTMT = 2;
10 public int JJTIDEQ_STMT = 3;
11 public int JJTATTR_STMT = 4;
12 public int JJTNODE_STMT = 5;
13 public int JJTNODE_ID = 6;
14 public int JJTPORT = 7;
15 public int JJTCOMPASS_PT = 8;
16 public int JJTEDGE_STMT = 9;
17 public int JJTSUBGRAPH = 10;
18 public int JJTEDGERHS = 11;
19 public int JJTEDGEOP = 12;
20 public int JJTATTR_LIST = 13;
21 public int JJTA_LIST = 14;
22
23
24 public String[] jjtNodeName = {
25 "graph",
26 "stmt_list",
27 "stmt",
28 "ideq_stmt",
29 "attr_stmt",
30 "node_stmt",
31 "node_id",
32 "port",
33 "compass_pt",
34 "edge_stmt",
35 "subgraph",
36 "edgeRHS",
37 "edgeop",
38 "attr_list",
39 "a_list",
40 };
41 }