Interface ICompareInputChangeListener
-
public interface ICompareInputChangeListener
Listener that gets informed if one (or more) of the three sides of anICompareInput
object changes its value.For example when accepting an incoming addition the (non-
null
) left side of anICompareInput
is copied to the right side (which wasnull
). This triggers a call tocompareInputChanged(org.eclipse.compare.structuremergeviewer.ICompareInput)
of registeredICompareInputChangeListener
.Note however, that listener are not informed if the content of one of the sides changes.
Clients may implement this interface. It is also implemented by viewers that take an
ICompareInput
as input.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
compareInputChanged(ICompareInput source)
Called whenever the value (not the content) of one or more of the three sides of aICompareInput
has changed.
-
-
-
Method Detail
-
compareInputChanged
void compareInputChanged(ICompareInput source)
Called whenever the value (not the content) of one or more of the three sides of aICompareInput
has changed.- Parameters:
source
- theICompareInput
that has changed
-
-