!7 sclass FindSections > DynPrintLog { void start { L l = allSwingComponentsOfType(JPanel.class); for (JPanel p : l) if (eq(className(p), "main$JSection")) { print("Section found: " + call(p, 'getTitle)); JTextArea ta = childOfType(p, JTextArea); printIndent(getText(ta)); } } }