Android Open Source - RGBColorPickerLibrary Observer






From Project

Back to project page RGBColorPickerLibrary.

License

The source code is released under:

MIT License

If you think the Android project RGBColorPickerLibrary listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package jayen.library.rbgcolorpicker;
/*from  ww w . ja  v a  2s.  c  om*/
/**
 * This is the Observer interface,
 * implemented by classes that need to
 * Observe Subjects.
 */
public interface Observer {

    /**
     * method to update the observer, used by subject to notify
     * @param subject The subject which got updated
     * @param value Updated colour value
     */
    public void update(Subject subject, int value);

}




Java Source Code List

jayen.app.rgbcolorpickerapp.ApplicationTest.java
jayen.app.rgbcolorpickerapp.Demo.java
jayen.library.rbgcolorpicker.AlphaPickerBar.java
jayen.library.rbgcolorpicker.ApplicationTest.java
jayen.library.rbgcolorpicker.BasePickerBar.java
jayen.library.rbgcolorpicker.BluePickerBar.java
jayen.library.rbgcolorpicker.ColorPickerDialog.java
jayen.library.rbgcolorpicker.ColorPickerSupportDialogFrag.java
jayen.library.rbgcolorpicker.GreenPickerBar.java
jayen.library.rbgcolorpicker.Observer.java
jayen.library.rbgcolorpicker.RedPickerBar.java
jayen.library.rbgcolorpicker.Subject.java