blob: 64d0d77b34e368427f595b8268a4015f44603245 [file] [log] [blame]
package com.xtremelabs.robolectric.internal;
/**
* Indicates that a method declaration is intended to Shadow a method with the same signature on the associated
* Android class.
*
* @see Implements
*/
@java.lang.annotation.Documented
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD})
public @interface Implementation {
boolean i18nSafe() default true;
}