xref: /aosp_15_r20/external/robolectric/annotations/src/main/java/org/robolectric/annotation/RealObject.java (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)
1 package org.robolectric.annotation;
2 
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
8 
9 /** Shadow fields annotated @RealObject will have the real instance injected. */
10 @Documented
11 @Retention(RetentionPolicy.RUNTIME)
12 @Target({ElementType.FIELD})
13 public @interface RealObject {}
14