Пример #1
0
 /**
  * 设置ios
  *
  */
 public void setIos(PlatformNotification ios)
 {
     this.ios = ios;
 }
Пример #2
0
 /**
  * 设置android
  *
  */
 public void setAndroid(PlatformNotification android)
 {
     this.android = android;
 }
Пример #3
0
 public Notification(String alert, PlatformNotification ios, PlatformNotification android)
 {
     this.alert   = alert;
     this.ios     = ios;
     this.android = android;
 }