KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > MyNode


1 public class MyNode
2 {
3   /** Symbol table */
4   protected static java.util.Hashtable JavaDoc symtab = new java.util.Hashtable JavaDoc();
5
6   /** Stack for calculations. */
7   protected static Object JavaDoc[] stack = new Object JavaDoc[1024];
8   protected static int top = -1;
9
10   public void interpret()
11   {
12      throw new UnsupportedOperationException JavaDoc(); // It better not come here.
13
}
14 }
15
Popular Tags