org.jogre.comm
Interface ITransmittable

All Known Implementing Classes:
CommChatBroadcast, CommSimpleMessage, JogreModel, Player, UserList, Table, User, TableList, PlayerList, PlayerState

public interface ITransmittable

Transmittable interface for all communication in the system. Any class whose values can be transmitted (and reconstructed again) should implement this class, create a flatten method and a constructor which builds the object again.

Version:
Alpha 0.1
Author:
Bob Marks

Method Summary
 String flatten()
          This method flattens an ITransmittable object into a String which can be transmitted.
 

Method Detail

flatten

public String flatten()
This method flattens an ITransmittable object into a String which can be transmitted. The object can then be recreated again from this String using its single String parameter constructor.
Returns: