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

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