Klasse PropertyChangeSupport
java.lang.Object
org.jupnp.internal.compat.java.beans.PropertyChangeSupport
This class is a simple implementation of java.beans.PropertyChangeSupport to
be able to run jUPnP on JavaSE Embedded 8 compact 2 profile.
It is functional compatible to java.beans for the needed functionalities of
jUPnP, with only a limited set of functions. It will only support to fire
old/new value, no filtering per property, event will be fired to ALL
registered listeners.
- Autor:
- Jochen Hiller - Initial contribution
- Siehe auch:
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoidvoidfirePropertyChange(String propertyName, Object oldValue, Object newValue) Fire an event for property changed.void
-
Konstruktordetails
-
PropertyChangeSupport
-
-
Methodendetails
-
addPropertyChangeListener
-
removePropertyChangeListener
-
firePropertyChange
Fire an event for property changed. It will be fired when- oldValue == null
- newValue == null
- !oldValue.equals(newValue)
-