public class GeneralTree { private GeneralNode root; public GeneralTree(GeneralNode node) { root = node; } public String toString() { return root.toString(); } public String toTree() { return root.toTree(); } }