Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/ICompareInputLabelProvider.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/ICompareInputLabelProvider.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/ICompareInputLabelProvider.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/ICompareInputLabelProvider.java
index 1f5fc6344..f1aa7cf85 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/ICompareInputLabelProvider.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/ICompareInputLabelProvider.java
@@ -14,11 +14,11 @@ import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.swt.graphics.Image;
/**
- * A label provider that provides the label and image for the left, right and
+ * A label provider that provides the label and image for the left, right and
* ancestor sides for a compare input being shown in compare/merge viewers.
* <p>
* This interface may be implemented by clients.
- *
+ *
* @since 3.3
*/
public interface ICompareInputLabelProvider extends ILabelProvider {
@@ -31,16 +31,16 @@ public interface ICompareInputLabelProvider extends ILabelProvider {
* @return the label for the ancestor side or <code>null</code>
*/
String getAncestorLabel(Object input);
-
+
/**
* Returns the image for the ancestor side of compare/merge viewers.
* This image is typically shown in the title of the ancestor area in a compare viewer.
*
* @param input the input object of a compare/merge viewer or <code>null</code>
* @return the image for the ancestor side or <code>null</code>
- */
+ */
Image getAncestorImage(Object input);
-
+
/**
* Returns the label for the left hand side of compare/merge viewers.
* This label is typically shown in the title of the left side of a compare viewer.
@@ -49,16 +49,16 @@ public interface ICompareInputLabelProvider extends ILabelProvider {
* @return the label for the left hand side or <code>null</code>
*/
String getLeftLabel(Object input);
-
+
/**
* Returns the image for the left hand side of compare/merge viewers.
* This image is typically shown in the title of the left side of a compare viewer.
*
* @param input the input object of a compare/merge viewer or <code>null</code>
* @return the image for the left hand side or <code>null</code>
- */
+ */
Image getLeftImage(Object input);
-
+
/**
* Returns the label for the right hand side of compare/merge viewers.
* This label is typically shown in the title of the right side of a compare viewer.
@@ -67,7 +67,7 @@ public interface ICompareInputLabelProvider extends ILabelProvider {
* @return the label for the right hand side or <code>null</code>
*/
String getRightLabel(Object input);
-
+
/**
* Returns the image for the right hand side of compare/merge viewers.
* This image is typically shown in the title of the right side of a compare viewer.

Back to the top