2023-10-26 20:46:03 +03:00
|
|
|
package SapforTestingSystem.SapforTasksPackage;
|
2023-10-27 02:07:13 +03:00
|
|
|
import Common.UI.Trees.DataTree;
|
|
|
|
|
|
|
|
|
|
import javax.swing.tree.DefaultMutableTreeNode;
|
|
|
|
|
import javax.swing.tree.TreePath;
|
|
|
|
|
public class SapforTasksPackageTree extends DataTree {
|
|
|
|
|
public SapforTasksPackageTree(DefaultMutableTreeNode root_in) {
|
|
|
|
|
super(root_in);
|
|
|
|
|
setRootVisible(false);
|
|
|
|
|
CollapseAll();
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected int getStartLine() {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public void SelectionAction(TreePath path) {}
|
|
|
|
|
@Override
|
|
|
|
|
public void LeftMouseAction2() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|