/* Research Project: Graphical Database for Category Theory J. Bradbury, Dr. R. Rosebrugh, I. Rutherford Mount Allison University 2001 File: HomNode.java Description: This class contains information on the node. */ class HomNode { HomNode down = null; HomNode across = null; int data; HomTree tree = null; boolean last = false; boolean ispath = false; }