KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sablecc > sablecc > launcher > syntax3 > parser > State


1 /* This file was generated by SableCC (http://www.sablecc.org/). */
2
3 package org.sablecc.sablecc.launcher.syntax3.parser;
4
5 import java.util.ArrayList JavaDoc;
6
7 final class State
8 {
9     int state;
10     ArrayList JavaDoc nodes;
11
12     State(@SuppressWarnings JavaDoc("hiding") int state, @SuppressWarnings JavaDoc("hiding") ArrayList JavaDoc nodes)
13     {
14         this.state = state;
15         this.nodes = nodes;
16     }
17 }
18
Popular Tags