merge with master and fixes after comments

This commit is contained in:
Ernir Erlingsson
2016-09-27 23:34:00 +02:00
parent 33795e7046
commit 92f2e7b0fc
10 changed files with 186 additions and 146 deletions

View File

@@ -16,6 +16,8 @@ public interface MessageTree<T extends MessageTree.MessageNode> {
interface MessageNode {
MessageId getId();
MessageId getParentId();
void setLevel(int level);
void setDescendantCount(int descendantCount);
long getTimestamp();
}