()
| 130 | return origin; |
| 131 | } |
| 132 | |
| 133 | static public String debugPrintBoxGraph(Box origin) { |
| 134 | String r = ""; |
| 135 | r += "children\n" + _debugPrintBoxGraphChildren(origin, 0); |
| 136 | r += "\nparents\n" + _debugPrintBoxGraphParents(origin, 0); |
| 137 | return r; |