public class LoadTestsTreeNode extends AbstractTreeNode<WsdlLoadTestsModelItem> {
private List<LoadTestTreeNode> loadTestNodes = new ArrayList<LoadTestTreeNode>();
protected LoadTestsTreeNode() {
super(new WsdlLoadTestsModelItem(getTestCase()));
for (int c = 0; c < getTestCase().getLoadTestCount(); c++) {
loadTestNodes
.add(new LoadTestTreeNode(getTestCase().getLoadTestAt(c), getModelItem(), getTreeModel()));
}