Class Shadows
java.lang.Object
org.robolectric.shadows.httpclient.Shadows
- All Implemented Interfaces:
ShadowProvider
Shadow mapper. Automatically generated by the Robolectric Annotation Processor.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionString[]Array of Java package names that are shadowed by this package.Return a collection of Map.Entry objects representing the mapping of class name to shadow name.voidreset(ClassTracker classTracker) Reset the static state of all shadows provided by this package.static ShadowDefaultRequestDirectorshadowOf(org.apache.http.impl.client.DefaultRequestDirector actual) Deprecated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.robolectric.internal.ShadowProvider
getShadowPickerMap
-
Constructor Details
-
Shadows
public Shadows()
-
-
Method Details
-
shadowOf
@Deprecated public static ShadowDefaultRequestDirector shadowOf(org.apache.http.impl.client.DefaultRequestDirector actual) Deprecated. -
reset
Description copied from interface:ShadowProviderReset the static state of all shadows provided by this package.- Specified by:
resetin interfaceShadowProvider
-
getShadows
Description copied from interface:ShadowProviderReturn a collection of Map.Entry objects representing the mapping of class name to shadow name.This is a multimap instead of a regular map in order to support, for instance, multiple shadows per class that only differ by SDK level.
It also uses a
Collection<Entry<String, String>>as the return value to avoid having a dependency on something like Guava Multimap.- Specified by:
getShadowsin interfaceShadowProvider- Returns:
- Shadow mapping.
-
getProvidedPackageNames
Description copied from interface:ShadowProviderArray of Java package names that are shadowed by this package.- Specified by:
getProvidedPackageNamesin interfaceShadowProvider- Returns:
- Array of Java package names.
-