Package org.eclipse.compare
Interface ICompareInputLabelProvider
- All Superinterfaces:
- IBaseLabelProvider,- ILabelProvider
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.
 
This interface may be implemented by clients.
- Since:
- 3.3
- 
Method SummaryModifier and TypeMethodDescriptiongetAncestorImage(Object input) Returns the image for the ancestor side of compare/merge viewers.getAncestorLabel(Object input) Returns the label for the ancestor side of compare/merge viewers.getLeftImage(Object input) Returns the image for the left hand side of compare/merge viewers.getLeftLabel(Object input) Returns the label for the left hand side of compare/merge viewers.getRightImage(Object input) Returns the image for the right hand side of compare/merge viewers.getRightLabel(Object input) Returns the label for the right hand side of compare/merge viewers.Methods inherited from interface org.eclipse.jface.viewers.IBaseLabelProvideraddListener, dispose, isLabelProperty, removeListenerMethods inherited from interface org.eclipse.jface.viewers.ILabelProvidergetImage, getText
- 
Method Details- 
getAncestorLabelReturns the label for the ancestor side of compare/merge viewers. This label is typically shown in the title of the ancestor area in a compare viewer.- Parameters:
- input- the input object of a compare/merge viewer or- null
- Returns:
- the label for the ancestor side or null
 
- 
getAncestorImageReturns 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.- Parameters:
- input- the input object of a compare/merge viewer or- null
- Returns:
- the image for the ancestor side or null
 
- 
getLeftLabelReturns 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.- Parameters:
- input- the input object of a compare/merge viewer or- null
- Returns:
- the label for the left hand side or null
 
- 
getLeftImageReturns 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.- Parameters:
- input- the input object of a compare/merge viewer or- null
- Returns:
- the image for the left hand side or null
 
- 
getRightLabelReturns 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.- Parameters:
- input- the input object of a compare/merge viewer or- null
- Returns:
- the label for the right hand side or null
 
- 
getRightImageReturns 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.- Parameters:
- input- the input object of a compare/merge viewer or- null
- Returns:
- the image for the right hand side or null
 
 
-