Package org.eclipse.jface.bindings
Interface ISchemeListener
-
- All Known Implementing Classes:
BindingManager
public interface ISchemeListenerAn instance of
ISchemeListenercan be used by clients to receive notification of changes to one or more instances ofIScheme.This interface may be implemented by clients.
- Since:
- 3.1
- See Also:
Scheme.addSchemeListener(ISchemeListener),Scheme.removeSchemeListener(ISchemeListener),SchemeEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidschemeChanged(SchemeEvent schemeEvent)Notifies that one or more attributes of an instance ofISchemehave changed.
-
-
-
Method Detail
-
schemeChanged
void schemeChanged(SchemeEvent schemeEvent)
Notifies that one or more attributes of an instance ofISchemehave changed. Specific details are described in theSchemeEvent.- Parameters:
schemeEvent- the scheme event. Guaranteed not to benull.
-
-