1package com.xtremelabs.robolectric.internal;
2
3/**
4 * Indicates that a class should always be instrumented by AndroidTranslator regardless of its package.
5 */
6@java.lang.annotation.Documented
7@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
8@java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE})
9public @interface Instrument {
10}
11