Here's the java .class file in question ``` public...
# announcements
a
Here's the java .class file in question
Copy code
public interface EventsDelegatingWidget<D extends EventsDelegate> extends Widget {
    @Nullable
    D getEventsDelegate();

    void setEventsDelegate(@Nullable D var1);

    public static final class DefaultImpls {
        public static void onCreate(@Nullable EventsDelegatingWidget<D> var0, Bundle var1) {
        }

        public static void onStart(EventsDelegatingWidget<D> var0) {
        }

        public static void onResume(EventsDelegatingWidget<D> var0) {
        }

        public static boolean onBackPressed(EventsDelegatingWidget<D> var0) {
        }

        public static void onPause(EventsDelegatingWidget<D> var0) {
        }

        public static void onSaveInstanceState(@Nullable EventsDelegatingWidget<D> var0, Bundle var1) {
        }

        public static void onStop(EventsDelegatingWidget<D> var0) {
        }

        public static void onDestroy(EventsDelegatingWidget<D> var0) {
        }
    }
}