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.functions; // w w w .j av a2 s . c om /** * Interface which provides an object of a specific type. * @author Dylan James * * @param <T> The type of object this interface provides. */ public interface Provider<T> { /** * Obtains the provided object. * @return The provided object. */ public T obtainProvided(); }