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 w w w . j a v a 2 s. c o m*/ import com.google.android.apps.dashclock.api.ExtensionData; public interface IExtensionDataFactory<T> { public enum Error { NOTIFICATION_ACCESS, EXTENSION_ACCESS } ExtensionData createFrom(T model); ExtensionData createFrom(Error error); }