Package org.apache.groovy.swing.binding
Class BindPath
java.lang.Object
org.apache.groovy.swing.binding.BindPath
public class BindPath
extends java.lang.Object
The bind path object.  This class represents one "step" in the bind path.
- 
Constructor SummaryConstructors Constructor Description BindPath()
- 
Method SummaryModifier and Type Method Description voidaddAllListeners(java.beans.PropertyChangeListener listener, java.lang.Object newObject, java.util.Set updateSet)Adds all the listeners to the objects in the bind path.voidaddListeners(java.beans.PropertyChangeListener listener, java.lang.Object newObject, java.util.Set updateSet)Add listeners to a specific object.TriggerBindinggetSyntheticTriggerBinding(java.lang.Object newObject)voidremoveListeners()Remove listeners, believing that our bould flags are accurate and it removes only as declared.voidupdateLocalSyntheticProperties(java.util.Map<java.lang.String,TriggerBinding> synthetics)voidupdatePath(java.beans.PropertyChangeListener listener, java.lang.Object newObject, java.util.Set updateSet)Called when we detect a change somewhere down our path.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
- 
Constructor Details- 
BindPathpublic BindPath()
 
- 
- 
Method Details- 
updatePathpublic void updatePath(java.beans.PropertyChangeListener listener, java.lang.Object newObject, java.util.Set updateSet)Called when we detect a change somewhere down our path. First, check to see if our object is changing. If so remove our old listener Next, update the reference object the children have and recurse Finally, add listeners if we have a different object- Parameters:
- listener- This listener to attach.
- newObject- The object we should read our property off of.
- updateSet- The list of objects we have added listeners to
 
- 
addAllListenerspublic void addAllListeners(java.beans.PropertyChangeListener listener, java.lang.Object newObject, java.util.Set updateSet)Adds all the listeners to the objects in the bind path. This assumes that we are not added as listeners to any of them, hence it is not idempotent.- Parameters:
- listener- This listener to attach.
- newObject- The object we should read our property off of.
- updateSet- The list of objects we have added listeners to
 
- 
addListenerspublic void addListeners(java.beans.PropertyChangeListener listener, java.lang.Object newObject, java.util.Set updateSet)Add listeners to a specific object. Updates the bould flags and update set- Parameters:
- listener- This listener to attach.
- newObject- The object we should read our property off of.
- updateSet- The list of objects we have added listeners to
 
- 
removeListenerspublic void removeListeners()Remove listeners, believing that our bould flags are accurate and it removes only as declared.
- 
updateLocalSyntheticPropertiespublic void updateLocalSyntheticProperties(java.util.Map<java.lang.String,TriggerBinding> synthetics)
- 
getSyntheticTriggerBinding
 
-