com.arm.mbed.cloud.sdk.annotations.Required Maven / Gradle / Ivy
/**
*
*/
package com.arm.mbed.cloud.sdk.annotations;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Preamble(description = "Specifies required elements (e.g. method, field) which must be executed or set for an object to be 'functional'")
@Documented
@Retention(RUNTIME)
@Target({ TYPE, FIELD, METHOD, ANNOTATION_TYPE, PARAMETER })
public @interface Required {
}