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
    void applyDataBinding()
    Apply the binding without processing it (say just install listeners).
    java.lang.String getId()  
    JAXXObject getSource()  
    boolean isDefaultBinding()
    This state is not used actually, but will be usefull later...
    void processDataBinding()
    Processes the binding.
    void removeDataBinding()
    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 JAXXObject which owns the binding
    • isDefaultBinding

      boolean isDefaultBinding()
      This state is not used actually, but will be usefull later...
      Returns:
      true if binding was registred as a default binding, false otherwise
    • 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.