Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 27594714166b82a1bb152acd05fb110fca97cd0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*******************************************************************************
 * Copyright (c) 2005, 2007 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.core.mapping;

import org.eclipse.core.resources.IStorage;
import org.eclipse.team.core.mapping.DelegatingStorageMerger;
import org.eclipse.team.core.mapping.IStorageMerger;

/**
 * Interface that allows the {@link DelegatingStorageMerger} to
 * delegate to IStreamMergers. We need an interface so the UI can
 * provide the implementation.
 */
public interface IStreamMergerDelegate {
	/**
	 * Find a storage merger for the given target.
	 * A storage merger will only be returned if
	 * there is a stream merger that matches the
	 * targets content type or extension.
	 *
	 * @param target the input storage
	 * @return a storage merger for the given target
	 */
	IStorageMerger findMerger(IStorage target);
}

Back to the top