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 SummaryModifier and TypeMethodDescriptionvoid_setSymbolicSourcePath(String path) voidconnect()Tells the interaction to connect any listenersvoidTells the interaction to disconnect any listenersReturns the adapter that owns this interactionReturns the component that this interaction depends on (recieves its updates from)voidinitialize(Class type, Object oldInstance, Object newInstance, Encoder out) booleanvoidvoidsetSerializeSymbolically(boolean b) voidSets the source component for this interaction
- 
Method Details- 
disconnectvoid disconnect()Tells the interaction to disconnect any listeners
- 
connectvoid connect()Tells the interaction to connect any listeners
- 
isSerializeSymbolicallyboolean isSerializeSymbolically()
- 
setSerializeSymbolicallyvoid setSerializeSymbolically(boolean b) 
- 
_setSymbolicSourcePath
- 
_getSymbolicSourcePathString _getSymbolicSourcePath()
- 
getSourceComponent getSource()Returns the component that this interaction depends on (recieves its updates from)
- 
setSourceSets the source component for this interaction
- 
getAdapterAdapter getAdapter()Returns the adapter that owns this interaction
- 
setAdapter
- 
initialize
 
-