| org.eclipse.ui.internal.preferences.IDynamicPropertyMap
All known Subclasses: org.eclipse.ui.internal.preferences.PropertyMapAdapter,
IDynamicPropertyMap | public interface IDynamicPropertyMap extends IPropertyMap(Code) | | since: 3.1 |
addListener | public void addListener(IPropertyMapListener listener)(Code) | | Attaches a property map listener to this map. The listener will be notified
whenever one of the properties in the map is changed, added, or removed.
Parameters: listener - since: 3.1 |
addListener | public void addListener(String[] propertyIds, IPropertyMapListener listener)(Code) | | Attaches a listener that will receive notifications when any
of the given properties change. If an identical listener is already registered,
then this will add additional IDs to the set of properties being monitored
by the given listener.
Parameters: listener - Parameters: propertyIds - since: 3.1 |
removeListener | public void removeListener(IPropertyMapListener listener)(Code) | | Removes a property map listener from this map . The listener will no longer
be notified whenever one of the properties in the map is changed, added, or removed.
Parameters: listener - since: 3.1 |
|
|