Coverage Report - org.jbehave.core.annotations.Named
 
Classes in this File Line Coverage Branch Coverage Complexity
Named
N/A
N/A
0
 
 1  
 package org.jbehave.core.annotations;
 2  
 
 3  
 import java.lang.annotation.ElementType;
 4  
 import java.lang.annotation.Retention;
 5  
 import java.lang.annotation.RetentionPolicy;
 6  
 import java.lang.annotation.Target;
 7  
 
 8  
 @Retention(RetentionPolicy.RUNTIME)
 9  
 @Target(ElementType.PARAMETER)
 10  
 public @interface Named {
 11  
 
 12  
     String value();
 13  
 
 14  
 }