That fuck shit the fascists are using
1package org.tm.archive.mediasend;
2
3import android.net.Uri;
4import android.view.View;
5
6import androidx.annotation.NonNull;
7import androidx.annotation.Nullable;
8
9/**
10 * A page that sits in the {@link MediaSendFragmentPagerAdapter}.
11 */
12public interface MediaSendPageFragment {
13
14 @NonNull Uri getUri();
15
16 void setUri(@NonNull Uri uri);
17
18 @Nullable Object saveState();
19
20 void restoreState(@NonNull Object state);
21
22 void notifyHidden();
23}