Changeset 643 for trunk/quest-core-events/src/main/java/de
- Timestamp:
- 08/27/12 17:48:13 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIModel.java
r611 r643 7 7 package de.ugoe.cs.quest.eventcore.guimodel; 8 8 9 import java.io.OutputStream; 10 import java.io.PrintStream; 9 11 import java.util.ArrayList; 10 12 import java.util.LinkedList; … … 116 118 117 119 return roots; 120 } 121 122 /** 123 * TODO: comment 124 * 125 * @return 126 */ 127 public void dump(OutputStream out) { 128 PrintStream stream; 129 130 if (out instanceof PrintStream) { 131 stream = (PrintStream) out; 132 } 133 else { 134 stream = new PrintStream(out); 135 } 136 137 for (IGUIElement root : getRootElements()) { 138 dumpGUIElement(stream, root, ""); 139 } 118 140 } 119 141 … … 333 355 334 356 /** 357 * TODO: comment 358 * 359 * @param root 360 * @param root2 361 */ 362 private void dumpGUIElement(PrintStream out, IGUIElement guiElement, String indent) { 363 out.print(indent); 364 out.print(guiElement); 365 366 List<IGUIElement> children = getChildren(guiElement); 367 368 if ((children != null) && (children.size() > 0)) { 369 out.println(" {"); 370 371 for (IGUIElement child : children) { 372 dumpGUIElement(out, child, indent + " "); 373 } 374 375 out.print(indent); 376 out.print("}"); 377 } 378 379 out.println(); 380 } 381 382 /** 335 383 * <p> 336 384 * TODO comment
Note: See TracChangeset
for help on using the changeset viewer.