org.robolectric.util.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandbox Show documentation
Show all versions of sandbox Show documentation
An alternative Android testing framework.
package org.robolectric.util;
/**
* Interface defining a function object.
*/
public interface Function {
R call(Class> theClass, T value, Object[] params);
}