blob: f1cd2e3a5c3973900ae70227b8e2c0098e1587ca [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.vfs.VirtualFile;
import org.jetbrains.annotations.NotNull;
import org.tmatesoft.svn.core.internal.util.SVNPathUtil;
import java.util.List;
public class WCInfoWithBranches extends WCInfo {
private final List<Branch> myBranches;
private final VirtualFile myRoot;
private final String myTrunkRoot;
public WCInfoWithBranches(@NotNull final WCInfo info, final List<Branch> branches, final VirtualFile root, final String trunkToot) {
super(info.getRootInfo(), info.isIsWcRoot(), info.getStickyDepth());
myBranches = branches;
myRoot = root;
myTrunkRoot = trunkToot;
}
// to be used in combo
@Override
public String toString() {
return getPath();
}
@Override
public VirtualFile getVcsRoot() {
return myRoot;
}
public List<Branch> getBranches() {
return myBranches;
}
public VirtualFile getRoot() {
return myRoot;
}
public String getTrunkRoot() {
return myTrunkRoot;
}
public static class Branch {
private final String myName;
private final String myUrl;
public Branch(final String url) {
myName = SVNPathUtil.tail(url);
myUrl = url;
}
public String getName() {
return myName;
}
public String getUrl() {
return myUrl;
}
@Override
public String toString() {
return myName;
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final Branch branch = (Branch)o;
if (myUrl != null ? !myUrl.equals(branch.myUrl) : branch.myUrl != null) return false;
return true;
}
@Override
public int hashCode() {
return (myUrl != null ? myUrl.hashCode() : 0);
}
}
}