Back to project page ccardstats.
The source code is released under:
GNU General Public License
If you think the Android project ccardstats 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 com.github.marwinxxii.ccardstats.notifications; /* ww w . jav a2s . c om*/ public interface NotificationService { public static final NotificationService[] SERVICES = { new SberbankService() }; public String getAddress(); public SmsNotification recognise(String body) throws IllegalArgumentException; }