Class Shadows
- java.lang.Object
-
- org.robolectric.shadows.httpclient.Shadows
-
- All Implemented Interfaces:
ShadowProvider
@Generated("org.robolectric.annotation.processing.RobolectricProcessor") public class Shadows extends Object implements ShadowProvider
Shadow mapper. Automatically generated by the Robolectric Annotation Processor.
-
-
Constructor Summary
Constructors Constructor Description Shadows()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
getProvidedPackageNames()
Array of Java package names that are shadowed by this package.Map<String,String>
getShadowMap()
Return the mapping of class name to shadow name.void
reset()
Reset the static state of all shadows provided by this package.static ShadowAndroidHttpClient
shadowOf(AndroidHttpClient actual)
static ShadowDefaultRequestDirector
shadowOf(org.apache.http.impl.client.DefaultRequestDirector actual)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.robolectric.internal.ShadowProvider
getShadowPickerMap
-
-
-
-
Method Detail
-
shadowOf
public static ShadowAndroidHttpClient shadowOf(AndroidHttpClient actual)
-
shadowOf
public static ShadowDefaultRequestDirector shadowOf(org.apache.http.impl.client.DefaultRequestDirector actual)
-
reset
public void reset()
Description copied from interface:ShadowProvider
Reset the static state of all shadows provided by this package.- Specified by:
reset
in interfaceShadowProvider
-
getShadowMap
public Map<String,String> getShadowMap()
Description copied from interface:ShadowProvider
Return the mapping of class name to shadow name.- Specified by:
getShadowMap
in interfaceShadowProvider
- Returns:
- Shadow mapping.
-
getProvidedPackageNames
public String[] getProvidedPackageNames()
Description copied from interface:ShadowProvider
Array of Java package names that are shadowed by this package.- Specified by:
getProvidedPackageNames
in interfaceShadowProvider
- Returns:
- Array of Java package names.
-
-