Back to project page AndroIUT.
The source code is released under:
GNU General Public License
If you think the Android project AndroIUT 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.iutdijon.androiut2.util.observers; // w ww. j a v a2s. c o m /** * Interface permetant d'impl?menter un Observable * @author Morgan Funtowicz * */ public interface Observable { void addObserver(Observer o); void removeObserver(Observer o); void notify(int progress); }