blob: f0ec11068ca0f1102d90560b81c6dc13213ee9e0 [file] [log] [blame]
/*
* Copyright 2000-2012 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.intellij.openapi.diff.impl.incrementalMerge;
import com.intellij.openapi.util.TextRange;
import org.jetbrains.annotations.NotNull;
final class MergeFragment {
@NotNull private final TextRange myLeft;
@NotNull private final TextRange myBase;
@NotNull private final TextRange myRight;
MergeFragment(@NotNull TextRange left, @NotNull TextRange base, @NotNull TextRange right) {
myLeft = left;
myBase = base;
myRight = right;
}
@NotNull
TextRange getLeft() {
return myLeft;
}
@NotNull
TextRange getBase() {
return myBase;
}
@NotNull
TextRange getRight() {
return myRight;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MergeFragment fragment = (MergeFragment)o;
if (!myBase.equals(fragment.myBase)) return false;
if (!myLeft.equals(fragment.myLeft)) return false;
if (!myRight.equals(fragment.myRight)) return false;
return true;
}
@Override
public int hashCode() {
int result = myLeft.hashCode();
result = 31 * result + myBase.hashCode();
result = 31 * result + myRight.hashCode();
return result;
}
public String toString() {
return "<" + myLeft.toString() + ", " + myBase.toString() + ", " + myRight.toString() + ">";
}
}