Files
android_translation_layer/src/api-impl/android/app/NotificationManager.java
2024-03-17 20:02:50 +01:00

14 lines
380 B
Java

package android.app;
public class NotificationManager {
public void cancelAll() {}
public void notify(String tag, int id, Notification notification) {
System.out.println("notify(" + tag + ", " + id + ", " + notification + ") called");
}
public void notify(int id, Notification notification) {
System.out.println("notify(" + id + ", " + notification + ") called");
}
}