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

org.javastack.metrics.jmx.Description Maven / Gradle / Ivy

The newest version!
package org.javastack.metrics.jmx;

import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;

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

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({
		CONSTRUCTOR, METHOD, PARAMETER, TYPE
})
public @interface Description {
	String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy