17 lines
387 B
Java
17 lines
387 B
Java
package com.huawei.hms.adapter.sysobs;
|
|
|
|
import android.content.Intent;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface SystemNotifier {
|
|
void notifyNoticeObservers(int i);
|
|
|
|
void notifyObservers(int i);
|
|
|
|
void notifyObservers(Intent intent, String str);
|
|
|
|
void registerObserver(SystemObserver systemObserver);
|
|
|
|
void unRegisterObserver(SystemObserver systemObserver);
|
|
}
|