Back to project page RZAndroidBaseUtils.
The source code is released under:
MIT License
If you think the Android project RZAndroidBaseUtils 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.raizlabs.util.observable; // www. ja v a2s .com import java.util.List; /** * Interface for a {@link List} implementation which is also observable via the * {@link ObservableData} interface. * * @author Dylan James * * @param <T> The type of data in the list. */ public interface ObservableList<T> extends List<T>, ObservableData<ObservableList<T>> { }