Back to project page CallNotifier.
The source code is released under:
Apache License
If you think the Android project CallNotifier 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.hevsoft.callnotiffier; /* w w w. j av a 2 s . co m*/ import java.util.List; /** * Created by elvis.iulian on 11/11/2014. */ public interface IObsController { public static final String DIR= "obsDir"; public static final String OBS = "obsFileName"; public void addObserver(Contact c); public void removeObserver(Contact c); public void notifyObservers(Subject s ); public void getObservers(Runnable callback); public List<Contact> getObservers(); }