001 package net.sourceforge.javajson.parser; 002 003 public class MyNode { 004 /** Symbol table */ 005 protected static java.util.Hashtable symtab = new java.util.Hashtable(); 006 007 /** Stack for calculations. */ 008 protected static Object[] stack = new Object[1024]; 009 010 protected static int top = -1; 011 012 protected void interpret() { 013 System.out.println("default interpret:" + getClass().getSimpleName()); 014 } 015 016 protected void push(Object o) { 017 System.out.println("default push:" + o.getClass().getSimpleName()); 018 } 019 }