com.vmlens.report.uielement.UILoopsAndStacktraceLeafs Maven / Gradle / Ivy
package com.vmlens.report.uielement;
import java.util.Collection;
import java.util.List;
public class UILoopsAndStacktraceLeafs {
private final Collection leafNodes;
private final List uiLoopAndRunElementsList;
public UILoopsAndStacktraceLeafs(Collection leafNodes,
List uiLoopAndRunElementsList) {
this.leafNodes = leafNodes;
this.uiLoopAndRunElementsList = uiLoopAndRunElementsList;
}
public Collection rootNodes() {
return leafNodes;
}
public List uiLoopAndRunElementsList() {
return uiLoopAndRunElementsList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy