1 package 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}) 11 public @interface RealObject { 12 } 13