That fuck shit the fascists are using
1package org.tm.archive.logsubmit;
2
3import androidx.annotation.NonNull;
4
5public interface LogLine {
6
7 long getId();
8 @NonNull String getText();
9 @NonNull Style getStyle();
10 @NonNull Placeholder getPlaceholderType();
11
12 enum Style {
13 NONE, VERBOSE, DEBUG, INFO, WARNING, ERROR
14 }
15
16 enum Placeholder {
17 NONE, TRACE
18 }
19}