Interface ICompareInputChangeListener
-
public interface ICompareInputChangeListenerListener that gets informed if one (or more) of the three sides of anICompareInputobject changes its value.For example when accepting an incoming addition the (non-
null) left side of anICompareInputis 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
ICompareInputas input.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcompareInputChanged(ICompareInput source)Called whenever the value (not the content) of one or more of the three sides of aICompareInputhas changed.
-
-
-
Method Detail
-
compareInputChanged
void compareInputChanged(ICompareInput source)
Called whenever the value (not the content) of one or more of the three sides of aICompareInputhas changed.- Parameters:
source- theICompareInputthat has changed
-
-