Package org.codehaus.groovy.binding
Class AbstractFullBinding
- java.lang.Object
-
- org.codehaus.groovy.binding.AbstractFullBinding
-
- All Implemented Interfaces:
BindingUpdatable,FullBinding
- Direct Known Subclasses:
PropertyPathFullBinding
@Deprecated public abstract class AbstractFullBinding extends Object implements FullBinding
Deprecated.- Since:
- Groovy 1.1
-
-
Field Summary
Fields Modifier and Type Field Description protected groovy.lang.ClosureconverterDeprecated.protected groovy.lang.ClosurereverseConverterDeprecated.protected SourceBindingsourceBindingDeprecated.protected TargetBindingtargetBindingDeprecated.protected groovy.lang.ClosurevalidatorDeprecated.
-
Constructor Summary
Constructors Constructor Description AbstractFullBinding()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description groovy.lang.ClosuregetConverter()Deprecated.groovy.lang.ClosuregetReverseConverter()Deprecated.SourceBindinggetSourceBinding()Deprecated.TargetBindinggetTargetBinding()Deprecated.groovy.lang.ClosuregetValidator()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(groovy.lang.Closure converter)Deprecated.voidsetReverseConverter(groovy.lang.Closure reverseConverter)Deprecated.voidsetSourceBinding(SourceBinding sourceBinding)Deprecated.voidsetTargetBinding(TargetBinding targetBinding)Deprecated.voidsetValidator(groovy.lang.Closure validator)Deprecated.voidupdate()Deprecated.Causes the values to be propagated from the source to the target-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.codehaus.groovy.binding.BindingUpdatable
bind, rebind, unbind
-
-
-
-
Field Detail
-
sourceBinding
protected SourceBinding sourceBinding
Deprecated.
-
targetBinding
protected TargetBinding targetBinding
Deprecated.
-
validator
protected groovy.lang.Closure validator
Deprecated.
-
converter
protected groovy.lang.Closure converter
Deprecated.
-
reverseConverter
protected groovy.lang.Closure reverseConverter
Deprecated.
-
-
Method Detail
-
update
public void update()
Deprecated.Description copied from interface:BindingUpdatableCauses the values to be propagated from the source to the target- Specified by:
updatein interfaceBindingUpdatable
-
reverseUpdate
public 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 interfaceBindingUpdatable
-
getSourceBinding
public SourceBinding getSourceBinding()
Deprecated.- Specified by:
getSourceBindingin interfaceFullBinding
-
setSourceBinding
public void setSourceBinding(SourceBinding sourceBinding)
Deprecated.- Specified by:
setSourceBindingin interfaceFullBinding
-
getTargetBinding
public TargetBinding getTargetBinding()
Deprecated.- Specified by:
getTargetBindingin interfaceFullBinding
-
setTargetBinding
public void setTargetBinding(TargetBinding targetBinding)
Deprecated.- Specified by:
setTargetBindingin interfaceFullBinding
-
getValidator
public groovy.lang.Closure getValidator()
Deprecated.- Specified by:
getValidatorin interfaceFullBinding
-
setValidator
public void setValidator(groovy.lang.Closure validator)
Deprecated.- Specified by:
setValidatorin interfaceFullBinding
-
getConverter
public groovy.lang.Closure getConverter()
Deprecated.- Specified by:
getConverterin interfaceFullBinding
-
setConverter
public void setConverter(groovy.lang.Closure converter)
Deprecated.- Specified by:
setConverterin interfaceFullBinding
-
getReverseConverter
public groovy.lang.Closure getReverseConverter()
Deprecated.- Specified by:
getReverseConverterin interfaceFullBinding
-
setReverseConverter
public void setReverseConverter(groovy.lang.Closure reverseConverter)
Deprecated.- Specified by:
setReverseConverterin interfaceFullBinding
-
-