@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface Implements
Indicates that a class declaration is intended to shadow an Android class declaration. The Robolectric runtime searches classes with this annotation for methods with the Implementation annotation and calls them in place of the methods on the Android class.
| Modifier and Type | Optional Element and Description | 
|---|---|
| boolean | callThroughByDefaultIf true, Robolectric will invoke the actual Android code for any method that isn’t shadowed. | 
| String | classNameAndroid class name (if the Class object is not accessible). | 
| boolean | isInAndroidSdkDenotes that this type exists in the public Android SDK. | 
| boolean | looseSignaturesIf true, when an exact method signature match isn’t found, Robolectric will look for a method with the same name but with all argument types replaced with java.lang.Object. | 
| int | maxSdkIf specified, the shadow class will be applied only for this SDK or lesser. | 
| int | minSdkIf specified, the shadow class will be applied only for this SDK or greater. | 
| Class<? extends ShadowPicker<?>> | shadowPickerIf specified, the  pickerwill be instantiated and called from within the newly-created Robolectric classloader. | 
| Class<?> | valueThe Android class to be shadowed. | 
public abstract Class<?> value
The Android class to be shadowed.
public abstract String className
Android class name (if the Class object is not accessible).
public abstract boolean isInAndroidSdk
Denotes that this type exists in the public Android SDK. When this value is true, the annotation processor will generate a shadowOf method.
public abstract boolean callThroughByDefault
If true, Robolectric will invoke the actual Android code for any method that isn’t shadowed.
public abstract boolean looseSignatures
If true, when an exact method signature match isn’t found, Robolectric will look for a method with the same name but with all argument types replaced with java.lang.Object.
public abstract int minSdk
If specified, the shadow class will be applied only for this SDK or greater.
public abstract int maxSdk
If specified, the shadow class will be applied only for this SDK or lesser.
public abstract Class<? extends ShadowPicker<?>> shadowPicker
If specified, the picker will be instantiated and called from within the newly-created Robolectric classloader. All shadow classes implementing the same Android class must use the same ShadowPicker.