centralized handling of built-in types and constants;
also store types and constants which are rewritten during preprocessing;
interfaces are identified by classes (supporting inheritance, at least on the level of built-in symbols);
removed term_eq in favor of type replacements: term-level occurrences of type bool are replaced by type term_bool (only for the translation)
package GraphBrowser;
import java.util.Vector;
class Directory {
TreeNode node;
String name;
Vector collapsed;
public Directory(TreeNode nd,String n,Vector col) {
collapsed=col;
name=n;
node=nd;
}
public TreeNode getNode() { return node; }
public String getName() { return name; }
public Vector getCollapsed() { return collapsed; }
}