00001 package gov.nasa.arc.ase.util;
00002
00003
00004
00005
00006 import java.util.Collection;
00007
00008
00009
00010
00011
00012 public class Tree {
00013
00014
00015
00016 private TreeNode root;
00017
00018
00019
00020
00021 public Tree() {
00022 root = null;
00023 }
00024
00025
00026
00027 public Collection get(TreeNode n) {
00028 return root.get(n);
00029 }
00030
00031
00032
00033 public TreeNode getRoot() {
00034 return root;
00035 }
00036
00037
00038
00039 void setRoot(TreeNode r) {
00040 root = r;
00041 }
00042
00043
00044
00045 public String toString() {
00046 if(root == null) return "-";
00047
00048 return "\\" + root.toString(" ");
00049 }
00050 }