Interface InteractionDescriptor
- 
- All Known Implementing Classes:
- PropertyInteractionDescriptor,- PropertyListenerDescriptor
 
 public interface InteractionDescriptorAn 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String_getSymbolicSourcePath()void_setSymbolicSourcePath(java.lang.String path)voidconnect()Tells the interaction to connect any listenersvoiddisconnect()Tells the interaction to disconnect any listenersAdaptergetAdapter()Returns the adapter that owns this interactionjava.awt.ComponentgetSource()Returns the component that this interaction depends on (recieves its updates from)voidinitialize(java.lang.Class type, java.lang.Object oldInstance, java.lang.Object newInstance, java.beans.Encoder out)booleanisSerializeSymbolically()voidsetAdapter(Adapter a)voidsetSerializeSymbolically(boolean b)voidsetSource(java.awt.Component component)Sets the source component for this interaction
 
- 
- 
- 
Method Detail- 
disconnectvoid disconnect() Tells the interaction to disconnect any listeners
 - 
connectvoid connect() Tells the interaction to connect any listeners
 - 
isSerializeSymbolicallyboolean isSerializeSymbolically() 
 - 
setSerializeSymbolicallyvoid setSerializeSymbolically(boolean b) 
 - 
_setSymbolicSourcePathvoid _setSymbolicSourcePath(java.lang.String path) 
 - 
_getSymbolicSourcePathjava.lang.String _getSymbolicSourcePath() 
 - 
getSourcejava.awt.Component getSource() Returns the component that this interaction depends on (recieves its updates from)
 - 
setSourcevoid setSource(java.awt.Component component) Sets the source component for this interaction
 - 
getAdapterAdapter getAdapter() Returns the adapter that owns this interaction
 - 
setAdaptervoid setAdapter(Adapter a) 
 - 
initializevoid initialize(java.lang.Class type, java.lang.Object oldInstance, java.lang.Object newInstance, java.beans.Encoder out)
 
- 
 
-