Community
Participate
Working Groups
public DefaultExecutionResultProxyNode(TPFExecutionResult er, Object parent) {
super(er, parent);
LinkedList c = new LinkedList();
// LinkedList c = new LinkedList();
TPFExecutionHistory history = er.getExecutionHistory();
// TPFExecutionHistory history = er.getExecutionHistory();
if (history != null ) {
// if (history != null ) {
EList events = history.getExecutionEvents();
// EList events = history.getExecutionEvents();
for (Iterator it = events.iterator(); it.hasNext();) {
// for (Iterator it = events.iterator(); it.hasNext();) {
getEventChildren((TPFExecutionEvent) it.next(), c, er);
// getEventChildren((TPFExecutionEvent) it.next(), c, er);
}
// }
children = (IProxyNode[]) c.toArray(new IProxyNode[c.size()]);
children = new IProxyNode[0];
//- save the name of this element
String name = er.getName();
String testName = null;