org.kt3k.straw.annotation.RunOnUiThread Maven / Gradle / Ivy
The newest version!
package org.kt3k.straw.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation for action methods to indicate that the method run on UiThread (main thread)
* This is useful for ui manipulation plugins
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RunOnUiThread {
}