Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryCompareAdapter.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryCompareAdapter.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryCompareAdapter.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryCompareAdapter.java
deleted file mode 100644
index 1b0d37a88..000000000
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/IHistoryCompareAdapter.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.team.ui.history;
-
-import org.eclipse.compare.CompareConfiguration;
-import org.eclipse.compare.structuremergeviewer.ICompareInput;
-import org.eclipse.core.runtime.IProgressMonitor;
-
-/**
- * An adaptation for a history page for displaying comparisons
- * triggered by history page selections.
- *
- * @since 3.2
- * @see HistoryPageSaveablePart
- * @see IHistoryPage
- */
-public interface IHistoryCompareAdapter {
-
- /**
- * Returns an ICompareInput for the passed in object.
- * @param object the object
- * @return returns an ICompareInput
- */
- public ICompareInput getCompareInput(Object object);
-
- /**
- * Prepare the compare input for display. Clients can perform
- * any long running preparations and assign labels to the
- * compare configuration.
- * @param input the compare input
- * @param configuration the compare configuration
- * @param monitor a progress monitor
- */
- public void prepareInput(ICompareInput input, CompareConfiguration configuration, IProgressMonitor monitor);
-
-}

Back to the top