1 package com.android.wm.shell.common.annotations; 2 3 import java.lang.annotation.Documented; 4 import java.lang.annotation.Inherited; 5 import java.lang.annotation.Retention; 6 import java.lang.annotation.RetentionPolicy; 7 8 import javax.inject.Qualifier; 9 10 /** Annotates a method or qualifies a provider that runs on the Shell main-thread */ 11 @Documented 12 @Inherited 13 @Qualifier 14 @Retention(RetentionPolicy.RUNTIME) 15 public @interface ShellMainThread {}