Back to project page looking-glass.
The source code is released under:
Apache License
If you think the Android project looking-glass 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 ca.orospakr.lookingglass; /** * Seriously, java? There's no simple callback value interface, at least in Java 7. */ public interface FutureValue<T> { void call(T value); }