![JAR search and dependency download from the Maven repository](/logo.png)
it.uniroma2.art.coda.interfaces.annotations.converters.Parameter Maven / Gradle / Ivy
package it.uniroma2.art.coda.interfaces.annotations.converters;
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;
/**
* Provides metadata about a parameter of a converter signature
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Parameter {
String name();
String htmlDescription() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy