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; /*from w w w . j av a 2 s . c om*/ /** * Interface for a delegate which can be executed on given parameters. * @author Dylan James * * @param <Params> The type of parameters that this {@link Delegate} executes * upon. */ public interface Delegate<Params> { /** * Executes this {@link Delegate} on the given parameters. * @param params The parameters to the delegate. */ public void execute(Params params); }