That fuck shit the fascists are using
1package org.tm.archive.logsubmit;
2
3import android.content.Context;
4
5import androidx.annotation.NonNull;
6
7import java.util.List;
8
9interface LogSection {
10 /**
11 * The title to show at the top of the log section.
12 */
13 @NonNull String getTitle();
14
15 /**
16 * The full content of your log section. We use a {@link CharSequence} instead of a
17 * {@link List<LogLine> } for performance reasons. Scrubbing large swaths of text is faster than
18 * one line at a time.
19 */
20 @NonNull CharSequence getContent(@NonNull Context context);
21
22 /**
23 * Whether or not this section has content.
24 */
25 default boolean hasContent() {
26 return true;
27 }
28}