Package org.nuiton.jaxx.runtime
Interface JAXXBinding
-
- All Superinterfaces:
EventListener,PropertyChangeListener
public interface JAXXBinding extends PropertyChangeListener
Created: 5 déc. 2009- Version:
- $Revision$ Mise a jour: $Date$ par : $Author$
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplyDataBinding()Apply the binding without processing it (say just install listeners).StringgetId()JAXXObjectgetSource()booleanisDefaultBinding()This state is not used actually, but will be usefull later...voidprocessDataBinding()Processes the binding.voidremoveDataBinding()Remove the binding.-
Methods inherited from interface java.beans.PropertyChangeListener
propertyChange
-
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the unique id of a binding
-
getSource
JAXXObject getSource()
- Returns:
- the
JAXXObjectwhich owns the binding
-
isDefaultBinding
boolean isDefaultBinding()
This state is not used actually, but will be usefull later...- Returns:
trueif binding was registred as a default binding,falseotherwise
-
applyDataBinding
void applyDataBinding()
Apply the binding without processing it (say just install listeners).
-
processDataBinding
void processDataBinding()
Processes the binding.
-
removeDataBinding
void removeDataBinding()
Remove the binding.
-
-