/* * Copyright (C) 2010, Google Inc. and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Distribution License v. 1.0 which is available at * https://www.eclipse.org/org/documents/edl-v10.php. * * SPDX-License-Identifier: BSD-3-Clause */ package org.eclipse.jgit.diff; /** * Wrap another comparator for use with * {@link org.eclipse.jgit.diff.Subsequence}. *

* This comparator acts as a proxy for the real comparator, translating element * indexes on the fly by adding the subsequence's begin offset to them. * Comparators of this type must be used with a * {@link org.eclipse.jgit.diff.Subsequence}. * * @param * the base sequence type. */ public final class SubsequenceComparator extends SequenceComparator> { private final SequenceComparator cmp; /** * Construct a comparator wrapping another comparator. * * @param cmp * the real comparator. */ public SubsequenceComparator(SequenceComparator cmp) { this.cmp = cmp; } @Override public boolean equals(Subsequence a, int ai, Subsequence b, int bi) { return cmp.equals(a.base, ai + a.begin, b.base, bi + b.begin); } @Override public int hash(Subsequence seq, int ptr) { return cmp.hash(seq.base, ptr + seq.begin); } }