Package org.codehaus.groovy.binding
Class MutualPropertyBinding
- java.lang.Object
- 
- org.codehaus.groovy.binding.MutualPropertyBinding
 
- 
- All Implemented Interfaces:
- BindingUpdatable,- FullBinding
 
 @Deprecated public class MutualPropertyBinding extends Object implements FullBinding Deprecated.- Since:
- Groovy 1.6
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidbind()Deprecated.Causes automatic updating of bound values to be turned on.ClosuregetConverter()Deprecated.ClosuregetReverseConverter()Deprecated.SourceBindinggetSourceBinding()Deprecated.TargetBindinggetTargetBinding()Deprecated.ClosuregetValidator()Deprecated.voidrebind()Deprecated.Causes the current bindings to be reset.protected voidrebuildBindings()Deprecated.voidreverseUpdate()Deprecated.If supported, Causes the values to be propagated from the target to the source, If not supported, an exception may be thrownvoidsetConverter(Closure converter)Deprecated.voidsetReverseConverter(Closure reverseConverter)Deprecated.voidsetSourceBinding(SourceBinding sourceBinding)Deprecated.voidsetTargetBinding(TargetBinding targetBinding)Deprecated.voidsetValidator(Closure validator)Deprecated.voidunbind()Deprecated.Causes automatic updating of bound values to be turned off.voidupdate()Deprecated.Causes the values to be propagated from the source to the target
 
- 
- 
- 
Method Detail- 
getSourceBindingpublic SourceBinding getSourceBinding() Deprecated.- Specified by:
- getSourceBindingin interface- FullBinding
 
 - 
getTargetBindingpublic TargetBinding getTargetBinding() Deprecated.- Specified by:
- getTargetBindingin interface- FullBinding
 
 - 
setSourceBindingpublic void setSourceBinding(SourceBinding sourceBinding) Deprecated.- Specified by:
- setSourceBindingin interface- FullBinding
 
 - 
setTargetBindingpublic void setTargetBinding(TargetBinding targetBinding) Deprecated.- Specified by:
- setTargetBindingin interface- FullBinding
 
 - 
setValidatorpublic void setValidator(Closure validator) Deprecated.- Specified by:
- setValidatorin interface- FullBinding
 
 - 
getValidatorpublic Closure getValidator() Deprecated.- Specified by:
- getValidatorin interface- FullBinding
 
 - 
setConverterpublic void setConverter(Closure converter) Deprecated.- Specified by:
- setConverterin interface- FullBinding
 
 - 
getConverterpublic Closure getConverter() Deprecated.- Specified by:
- getConverterin interface- FullBinding
 
 - 
setReverseConverterpublic void setReverseConverter(Closure reverseConverter) Deprecated.- Specified by:
- setReverseConverterin interface- FullBinding
 
 - 
getReverseConverterpublic Closure getReverseConverter() Deprecated.- Specified by:
- getReverseConverterin interface- FullBinding
 
 - 
rebuildBindingsprotected void rebuildBindings() Deprecated.
 - 
bindpublic void bind() Deprecated.Description copied from interface:BindingUpdatableCauses automatic updating of bound values to be turned on. This is idempotent between calls to unbind and rebind; i.e. multiple calls to bind will have only the effect of the first call.- Specified by:
- bindin interface- BindingUpdatable
 
 - 
unbindpublic void unbind() Deprecated.Description copied from interface:BindingUpdatableCauses automatic updating of bound values to be turned off. This is idempotent between calls to bind and rebind; i.e. multiple calls to unbind will have only the effect of the first call.- Specified by:
- unbindin interface- BindingUpdatable
 
 - 
rebindpublic void rebind() Deprecated.Description copied from interface:BindingUpdatableCauses the current bindings to be reset. If the binding is not bound, it is a no-op. If the binding is bound, it will be turned off, then turned on against current values.- Specified by:
- rebindin interface- BindingUpdatable
 
 - 
updatepublic void update() Deprecated.Description copied from interface:BindingUpdatableCauses the values to be propagated from the source to the target- Specified by:
- updatein interface- BindingUpdatable
 
 - 
reverseUpdatepublic void reverseUpdate() Deprecated.Description copied from interface:BindingUpdatableIf supported, Causes the values to be propagated from the target to the source, If not supported, an exception may be thrown- Specified by:
- reverseUpdatein interface- BindingUpdatable
 
 
- 
 
-