All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cedarsoft.annotations.NonUiThread Maven / Gradle / Ivy

package com.cedarsoft.annotations;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import com.cedarsoft.annotations.meta.ThreadDescribingAnnotation;

/**
 * @author Johannes Schneider ([email protected])
 */
@Documented
@Retention( RetentionPolicy.RUNTIME )
@Target( {ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD, ElementType.CONSTRUCTOR} )
@ThreadDescribingAnnotation(NonUiThread.THREAD_DESCRIPTOR)
public @interface NonUiThread {
  String THREAD_DESCRIPTOR = "non-ui-thread";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy