blob: 447c0acec0e2697282baf3123b32e340b564c060 [file] [log] [blame]
/*
* Copyright 2000-2010 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 git4idea.history.wholeTree;
import com.intellij.openapi.util.Ref;
import java.util.List;
/**
* @author irengrig
*/
public class WireNumberCommitDecoration implements CommitI {
private final CommitI myDelegate;
private int myWireNumber;
public WireNumberCommitDecoration(CommitI delegate) {
assert ! (delegate instanceof WireNumberCommitDecoration);
myDelegate = delegate;
}
@Override
public int compareByName(Commit c) {
return myDelegate.compareByName(c);
}
@Override
public Ref<Integer> getAuthorIdx() {
return myDelegate.getAuthorIdx();
}
@Override
public String getDecorationString() {
return myDelegate.getDecorationString();
}
@Override
public AbstractHash getHash() {
return myDelegate.getHash();
}
@Override
public long getTime() {
return myDelegate.getTime();
}
@Override
public boolean holdsDecoration() {
return myDelegate.holdsDecoration();
}
@Override
public <T> T selectRepository(List<T> repositories) {
return myDelegate.selectRepository(repositories);
}
@Override
public int getWireNumber() {
return myWireNumber;
}
@Override
public void setWireNumber(int wireNumber) {
myWireNumber = wireNumber;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
WireNumberCommitDecoration that = (WireNumberCommitDecoration)o;
if (myWireNumber != that.myWireNumber) return false;
if (!myDelegate.equals(that.myDelegate)) return false;
return true;
}
@Override
public int hashCode() {
int result = myDelegate.hashCode();
result = 31 * result + myWireNumber;
return result;
}
}