Package jaxx.runtime
Interface JAXXBinding
- All Superinterfaces:
java.util.EventListener,java.beans.PropertyChangeListener
- All Known Implementing Classes:
DefaultJAXXBinding,SimpleJAXXObjectBinding
public interface JAXXBinding
extends java.beans.PropertyChangeListener
Created: 5 déc. 2009
- Version:
- $Revision$ Mise a jour: $Date$ par : $Author$
- Author:
- Tony Chemit - chemit@codelutin.com
-
Method Summary
Modifier and Type Method Description voidapplyDataBinding()Apply the binding without processing it (say just install listeners).java.lang.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 Details
-
getId
java.lang.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.
-