Esempio n. 1
0
 /**
  * 设置ios
  *
  */
 public void setIos(PlatformNotification ios)
 {
     this.ios = ios;
 }
Esempio n. 2
0
 /**
  * 设置android
  *
  */
 public void setAndroid(PlatformNotification android)
 {
     this.android = android;
 }
Esempio n. 3
0
 public Notification(String alert, PlatformNotification ios, PlatformNotification android)
 {
     this.alert   = alert;
     this.ios     = ios;
     this.android = android;
 }