blob: ab8a4a1f9e84804a1e7e440d26af0f3e58bc6dc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.wireguard.android.databinding;
import android.databinding.ObservableMap;
import java.util.NavigableMap;
/**
* Interface for maps that are both observable and sorted.
*/
public interface ObservableNavigableMap<K, V> extends NavigableMap<K, V>, ObservableMap<K, V> {
// No additional methods.
}
|