Back to project page dashclock-notification.
The source code is released under:
Apache License
If you think the Android project dashclock-notification listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.solapps.dashclock.notification.service; /*from www. ja v a 2 s . co m*/ import java.util.List; import net.solapps.dashclock.notification.service.IModelFactory.IModel; import android.app.PendingIntent; import android.service.notification.StatusBarNotification; public interface IModelFactory<T extends IModel> { public interface IModel { String packageName(); PendingIntent contentIntent(); } T createFrom(List<StatusBarNotification> sbns); }