vscript.message
Interface Messagable


public interface Messagable

Any object that needs to send or recieve messages need to implement the messagable interface.


Method Summary
 java.lang.String getDataValue(java.lang.String data)
          This method has to be implemented by Messagable objects in order to provide other components with requested data.
 void handleMessage(vscript.message.Message message)
          This method allows the component to recieve messages.
 void setEventTagManager(vscript.interpreter.EventTagManager etm)
          This method is used to provide the Event tag manager object to component.Messagable objects can hold the reference to EventTagManager in order to help them generate events and thus process their event tags.
 

Method Detail

handleMessage

public void handleMessage(vscript.message.Message message)
This method allows the component to recieve messages.


setEventTagManager

public void setEventTagManager(vscript.interpreter.EventTagManager etm)
This method is used to provide the Event tag manager object to component.Messagable objects can hold the reference to EventTagManager in order to help them generate events and thus process their event tags.


getDataValue

public java.lang.String getDataValue(java.lang.String data)
This method has to be implemented by Messagable objects in order to provide other components with requested data.