org.eclipse.ecf.presence.history
Interface IHistoryLine

All Superinterfaces:
org.eclipse.core.runtime.IAdaptable

public interface IHistoryLine
extends org.eclipse.core.runtime.IAdaptable

A single chat line from history.


Method Summary
 java.util.Date getDate()
          Get the Date this history line was sent or received.
 ID getReceiverID()
          Get ID of receiver for this history line.
 ID getSenderID()
          Get ID of sender for this history line.
 java.lang.String getText()
          Get the actual text of the line.
 
Methods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapter
 

Method Detail

getSenderID

ID getSenderID()
Get ID of sender for this history line. ID returned will not be null.

Returns:
ID of sender for this history line. Will not be null.

getReceiverID

ID getReceiverID()
Get ID of receiver for this history line. ID returned will not be null.

Returns:
ID of receiver for this history line. Will not be null.

getDate

java.util.Date getDate()
Get the Date this history line was sent or received.

Returns:
Date associated with this history line. Will not be null.

getText

java.lang.String getText()
Get the actual text of the line.

Returns:
String text of the message.