@Documented
@Retention(value=RUNTIME)
@Target(value={METHOD,CONSTRUCTOR,TYPE})
public @interface UiThread
Indicates that the target method should only be called on the UI thread. If the annotated element
is a class, then all methods in the class should be called on the UI thread.
Methods running on UI thread should not call Slow methods.