Uses of Interface
org.jdesktop.beansbinding.PropertyStateListener
-
Packages that use PropertyStateListener Package Description org.jdesktop.beansbinding Provides support for defining properties and creating bindings between sets of two properties. -
-
Uses of PropertyStateListener in org.jdesktop.beansbinding
Methods in org.jdesktop.beansbinding that return PropertyStateListener Modifier and Type Method Description PropertyStateListener[]ObjectProperty. getPropertyStateListeners(S source)Returns an empty array; the state of anObjectPropertynever changes so listeners aren't useful.abstract PropertyStateListener[]Property. getPropertyStateListeners(S source)Returns an arry containing the listeners registered for the given source.PropertyStateListener[]PropertyHelper. getPropertyStateListeners(S source)Returns an arry containing the listeners registered for the given source.Methods in org.jdesktop.beansbinding with parameters of type PropertyStateListener Modifier and Type Method Description voidObjectProperty. addPropertyStateListener(S source, PropertyStateListener listener)Does nothing; the state of anObjectPropertynever changes so listeners aren't useful.abstract voidProperty. addPropertyStateListener(S source, PropertyStateListener listener)Adds aPropertyStateListenerto be notified when the state of thePropertychanges with respect to the given source.voidPropertyHelper. addPropertyStateListener(S source, PropertyStateListener listener)Adds aPropertyStateListenerto be notified when the state of thePropertychanges with respect to the given source.voidObjectProperty. removePropertyStateListener(S source, PropertyStateListener listener)Does nothing; the state of anObjectPropertynever changes so listeners aren't useful.abstract voidProperty. removePropertyStateListener(S source, PropertyStateListener listener)Removes aPropertyStateListenerfor the given source.voidPropertyHelper. removePropertyStateListener(S source, PropertyStateListener listener)Removes aPropertyStateListenerfor the given source.
-