mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Submit thread list items to ListAdapter
This commit is contained in:
@@ -4,7 +4,7 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||
import org.briarproject.bramble.api.sync.MessageId;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
@@ -13,14 +13,15 @@ public interface MessageTree<T extends MessageTree.MessageNode> {
|
||||
|
||||
void add(Collection<T> nodes);
|
||||
|
||||
@Deprecated
|
||||
void add(T node);
|
||||
|
||||
void setComparator(Comparator<T> comparator);
|
||||
|
||||
@Deprecated
|
||||
void clear();
|
||||
|
||||
Collection<T> depthFirstOrder();
|
||||
List<T> depthFirstOrder();
|
||||
|
||||
@Deprecated
|
||||
boolean contains(MessageId m);
|
||||
|
||||
@NotNullByDefault
|
||||
|
||||
Reference in New Issue
Block a user