This commit is contained in:
akwizgran
2011-12-06 10:53:09 +00:00
parent 00df158ad6
commit 0b749ca9e5
2 changed files with 4 additions and 4 deletions

View File

@@ -10,8 +10,8 @@ public interface MessageHeader {
MessageId getId(); MessageId getId();
/** /**
* Returns the message's parent, or MessageId.NONE if this is the first * Returns the message's parent, or null if this is the first message in a
* message in a thread. * thread.
*/ */
MessageId getParent(); MessageId getParent();

View File

@@ -6,8 +6,8 @@ public interface Message {
MessageId getId(); MessageId getId();
/** /**
* Returns the message's parent, or MessageId.NONE if this is the first * Returns the message's parent, or null if this is the first message in a
* message in a thread. * thread.
*/ */
MessageId getParent(); MessageId getParent();