RealObject.java revision 99fafb79bf98b7aa1946bbda1f0a225cefa2d35d
1package com.xtremelabs.robolectric.internal;
2
3/**
4 * Shadow fields annotated @RealObject will have the real instance injected.
5 *
6 * @see Implements
7 */
8@java.lang.annotation.Documented
9@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
10@java.lang.annotation.Target({java.lang.annotation.ElementType.FIELD})
11public @interface RealObject {
12}
13