blob: f812142ba3af57ae845bdb32847581016a3da86b [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 org.jetbrains.idea.svn.dialogs;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.util.Disposer;
import org.tmatesoft.svn.core.SVNURL;
import javax.swing.tree.TreeNode;
import java.text.Collator;
import java.util.*;
public class RepositoryTreeRootNode implements TreeNode, Disposable {
private final List<TreeNode> myChildren;
private final RepositoryTreeModel myModel;
public RepositoryTreeRootNode(RepositoryTreeModel model, SVNURL[] urls) {
myChildren = new ArrayList<TreeNode>();
myModel = model;
for (SVNURL url : urls) {
RepositoryTreeNode rootNode = new RepositoryTreeNode(model, this, url, url);
Disposer.register(this, rootNode);
myChildren.add(rootNode);
}
Collections.sort(myChildren, new Comparator<TreeNode>() {
public int compare(TreeNode o1, TreeNode o2) {
return Collator.getInstance().compare(o1.toString(), o2.toString());
}
});
}
public void addRoot(SVNURL url) {
RepositoryTreeNode rootNode = new RepositoryTreeNode(myModel, this, url, url);
Disposer.register(this, rootNode);
myChildren.add(rootNode);
Collections.sort(myChildren, new Comparator<TreeNode>() {
public int compare(TreeNode o1, TreeNode o2) {
return Collator.getInstance().compare(o1.toString(), o2.toString());
}
});
myModel.nodesWereInserted(this, new int[]{myChildren.indexOf(rootNode)});
}
public void remove(TreeNode node) {
int index = getIndex(node);
myChildren.remove(node);
myModel.nodesWereRemoved(this, new int[]{index}, new Object[]{node});
}
public Enumeration children() {
return Collections.enumeration(myChildren);
}
public boolean getAllowsChildren() {
return true;
}
public TreeNode getChildAt(int childIndex) {
return myChildren.get(childIndex);
}
public int getChildCount() {
return myChildren.size();
}
public int getIndex(TreeNode node) {
return myChildren.indexOf(node);
}
public TreeNode getParent() {
return null;
}
public boolean isLeaf() {
return false;
}
public void dispose() {
}
}