blob: ce3aabb9b980474b550a29e39984b38ad86a68a9 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.theoryinpractice.testng.model;
import com.intellij.execution.testframework.Filter;
import com.intellij.execution.testframework.AbstractTestProxy;
import com.intellij.ide.util.treeView.AbstractTreeStructure;
import com.intellij.ide.util.treeView.NodeDescriptor;
import com.intellij.openapi.project.Project;
import org.jetbrains.annotations.NotNull;
import java.util.List;
public class TestTreeStructure extends AbstractTreeStructure
{
private final Object root;
private Filter filter;
private final Project project;
public TestTreeStructure(Project project, Object root) {
this.project = project;
this.root = root;
filter = Filter.NO_FILTER;
}
public void setFilter(Filter filter)
{
this.filter = filter;
}
public Filter getFilter()
{
return filter;
}
@Override
public Object getRootElement()
{
return root;
}
@Override
public Object[] getChildElements(Object obj)
{
List<AbstractTestProxy> results = ((TestProxy)obj).getResults(filter);
return results.toArray(new AbstractTestProxy[results.size()]);
}
@Override
public Object getParentElement(Object obj)
{
TestProxy node = (TestProxy)obj;
return node.getParent();
}
@NotNull
@Override
public TestNodeDescriptor createDescriptor(Object obj, NodeDescriptor parent)
{
TestProxy node = (TestProxy)obj;
return new TestNodeDescriptor(project, node, parent);
}
@Override
public void commit()
{
}
@Override
public boolean hasSomethingToCommit()
{
return false;
}
}