| java.util.TreeSet tools.tracesviewer.MessageLogList
MessageLogList | public class MessageLogList extends TreeSet (Code) | | This class stores a sorted list messages for logging.
version: 1.2 author: M. Ranganathan author: Marc Bednarek |
Method Summary | |
public synchronized boolean | add(Object obj) | public void | addDescription(String description) set a descriptive string for this log (for id purposes). |
startTime | protected static long startTime(Code) | | |
MessageLogList | public MessageLogList(Comparator comp)(Code) | | Constructor.
Parameters: comp - comparator for sorting the logs |
MessageLogList | public MessageLogList(String callId, Comparator comp)(Code) | | Constructor given callId and a comparator.
Parameters: callId - is the call id for which to store the log. Parameters: comp - is the comparator to sort the log records. |
add | public synchronized boolean add(Object obj)(Code) | | Add a comparable object to the messgageLog
Parameters: obj - is the comparable object to add to the message log. |
addDescription | public void addDescription(String description)(Code) | | set a descriptive string for this log (for id purposes).
Parameters: description - is the decriptive string to add. |
|
|