1package com.xtremelabs.robolectric.internal; 2 3/** 4 * Indicates that a method declaration is intended to Shadow a method with the same signature on the associated 5 * Android class. 6 * 7 * @see Implements 8 */ 9@java.lang.annotation.Documented 10@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME) 11@java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD}) 12public @interface Implementation { 13 boolean i18nSafe() default true; 14} 15