Package org.zkoss.bind.impl
Class ChildrenBindingImpl
- java.lang.Object
-
- org.zkoss.bind.impl.BindingImpl
-
- org.zkoss.bind.impl.ChildrenBindingImpl
-
- All Implemented Interfaces:
java.io.Serializable
,Binding
,ChildrenBinding
- Direct Known Subclasses:
InitChildrenBindingImpl
,LoadChildrenBindingImpl
public abstract class ChildrenBindingImpl extends BindingImpl implements ChildrenBinding
A base implementation ofChildrenBinding
.- Since:
- 6.0.0
- Author:
- dennis
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected AccessInfo
_accessInfo
-
Constructor Summary
Constructors Modifier Constructor Description protected
ChildrenBindingImpl(Binder binder, Component comp, java.lang.String accessExpr, ConditionType conditionType, java.lang.String command, java.util.Map<java.lang.String,java.lang.Object> bindingArgs, java.lang.String converterExpr, java.util.Map<java.lang.String,java.lang.Object> converterArgs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCommandName()
Returns the associated command name of this binding; null if not specified.ConditionType
getConditionType()
Returns the condition type of this bindingConverter
getConverter()
java.lang.String
getPropertyString()
Returns the property expression script of this binding.protected boolean
ignoreTracker()
java.lang.String
toString()
-
Methods inherited from class org.zkoss.bind.impl.BindingImpl
containsAttribute, getArgs, getAttribute, getBinder, getComponent, setAttribute
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.zkoss.bind.sys.Binding
getArgs, getBinder, getComponent
-
-
-
-
Field Detail
-
_accessInfo
protected final AccessInfo _accessInfo
-
-
Constructor Detail
-
ChildrenBindingImpl
protected ChildrenBindingImpl(Binder binder, Component comp, java.lang.String accessExpr, ConditionType conditionType, java.lang.String command, java.util.Map<java.lang.String,java.lang.Object> bindingArgs, java.lang.String converterExpr, java.util.Map<java.lang.String,java.lang.Object> converterArgs)
- Parameters:
binder
-comp
-accessExpr
- the binding expression , to access the beanconditionType
- the condition typecommand
- the command, if the conditionType is not prompt, then command must not nullbindingArgs
-
-
-
Method Detail
-
ignoreTracker
protected boolean ignoreTracker()
-
getConverter
public Converter getConverter()
-
getCommandName
public java.lang.String getCommandName()
Description copied from interface:ChildrenBinding
Returns the associated command name of this binding; null if not specified.- Specified by:
getCommandName
in interfaceChildrenBinding
- Returns:
- the associated command name of this binding; null if not specified.
-
getPropertyString
public java.lang.String getPropertyString()
Description copied from interface:ChildrenBinding
Returns the property expression script of this binding.- Specified by:
getPropertyString
in interfaceChildrenBinding
- Returns:
- the property expression script of this binding.
-
getConditionType
public ConditionType getConditionType()
Description copied from interface:ChildrenBinding
Returns the condition type of this binding- Specified by:
getConditionType
in interfaceChildrenBinding
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-