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

javax.annotation.Priority Maven / Gradle / Ivy

There is a newer version: 3.0.0.Alpha1
Show newest version
package javax.annotation;

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

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Target(TYPE)
@Retention(RUNTIME)
@Documented
public @interface Priority {
    int value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy