Interface InteractionDescriptor

  • All Known Implementing Classes:
    PropertyInteractionDescriptor, PropertyListenerDescriptor

    public interface InteractionDescriptor
    An Interaction Descriptor represents an inter-component dependency relationship. For instance, if component property A.x is bound to B.y, The interaction descriptor would represent the dependence on B.y ( the source of the relationship ), where the target (A.x) is defined through the reference to the Adapter.
    • Method Detail

      • disconnect

        void disconnect()
        Tells the interaction to disconnect any listeners
      • connect

        void connect()
        Tells the interaction to connect any listeners
      • isSerializeSymbolically

        boolean isSerializeSymbolically()
      • setSerializeSymbolically

        void setSerializeSymbolically​(boolean b)
      • _setSymbolicSourcePath

        void _setSymbolicSourcePath​(java.lang.String path)
      • _getSymbolicSourcePath

        java.lang.String _getSymbolicSourcePath()
      • getSource

        java.awt.Component getSource()
        Returns the component that this interaction depends on (recieves its updates from)
      • setSource

        void setSource​(java.awt.Component component)
        Sets the source component for this interaction
      • getAdapter

        Adapter getAdapter()
        Returns the adapter that owns this interaction
      • setAdapter

        void setAdapter​(Adapter a)
      • initialize

        void initialize​(java.lang.Class type,
                        java.lang.Object oldInstance,
                        java.lang.Object newInstance,
                        java.beans.Encoder out)