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

com.tngtech.jgiven.annotation.AnnotationFormat Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tngtech.jgiven.annotation;

import java.lang.annotation.*;

import com.tngtech.jgiven.format.AnnotationArgumentFormatter;

/**
 * Allows arguments of step methods to be formatted with an {@link AnnotationArgumentFormatter}.
 * This annotation can only appear on custom annotations. 
 * The custom annotation can then be applied to step arguments
 * 

* For an example usage see the {@link Formatf} annotation *

* @since 0.7.0 */ @Documented @Retention( RetentionPolicy.RUNTIME ) @Target( ElementType.ANNOTATION_TYPE ) public @interface AnnotationFormat { Class value(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy