class Node { String name = "???"; int totalCount; Node[] children = new Node[10]; int[] monthCounts = new int[12]; color c2 = color(255,255,255); public Node(String name, color colr) { this.name = name; this.c2 = colr; } public String toString() { //String rs = name; String rs = name + "/" + c2 + ", totalCount: " + totalCount + " byMonth: " + Arrays.toString(monthCounts); return rs; } }