Package org.eclipse.core.commands
Interface IParameterTypeListener
-
- All Known Implementing Classes:
CommandManager
public interface IParameterTypeListener
An instance of this interface can be used by clients to receive notification of changes to one or more instances ofParameterType
.This interface may be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
parameterTypeChanged(ParameterTypeEvent parameterTypeEvent)
Notifies that one or more properties of an instance ofParameterType
have changed.
-
-
-
Method Detail
-
parameterTypeChanged
void parameterTypeChanged(ParameterTypeEvent parameterTypeEvent)
Notifies that one or more properties of an instance ofParameterType
have changed. Specific details are described in theParameterTypeEvent
.- Parameters:
parameterTypeEvent
- the event. Guaranteed not to benull
.
-
-