Package com.palantir.ptoss.cinch.core
Class Bindings
- java.lang.Object
- 
- com.palantir.ptoss.cinch.core.Bindings
 
- 
 public class Bindings extends java.lang.ObjectAll Bindings are called whenModelUpdates.ALLis called.If a Boundcomponent has an "on" parameter then it will only be triggered if the specificModelUpdatetype is triggered.If a Boundcomponent has no "on" parameter then it will be triggered by any update type (including none) triggered by itsBindableModel.
- 
- 
Field SummaryFields Modifier and Type Field Description static com.google.common.collect.ImmutableList<BindingWiring>STANDARD_BINDINGSThe list ofBindingWiringclasses that are standard to this framework.
 - 
Constructor SummaryConstructors Constructor Description Bindings()Bindings(java.util.Collection<BindingWiring> wirings)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbind(java.lang.Object object)voidbindWithoutUpdate(java.lang.Object object)protected java.util.List<Binding>createBindings(BindingContext context)voidrelease(BindableModel model)static Bindingsstandard()voidupdateAll()
 
- 
- 
- 
Field Detail- 
STANDARD_BINDINGSpublic static final com.google.common.collect.ImmutableList<BindingWiring> STANDARD_BINDINGS The list ofBindingWiringclasses that are standard to this framework.
 
- 
 - 
Constructor Detail- 
Bindingspublic Bindings() 
 - 
Bindingspublic Bindings(java.util.Collection<BindingWiring> wirings) 
 
- 
 - 
Method Detail- 
standardpublic static Bindings standard() 
 - 
bindpublic void bind(java.lang.Object object) 
 - 
bindWithoutUpdatepublic void bindWithoutUpdate(java.lang.Object object) 
 - 
releasepublic void release(BindableModel model) 
 - 
createBindingsprotected java.util.List<Binding> createBindings(BindingContext context) 
 - 
updateAllpublic void updateAll() 
 
- 
 
-