Coverage Report - org.trails.descriptor.annotation.MethodDescriptorAnnotationHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
MethodDescriptorAnnotationHandler
0% 
N/A 
0
 
 1  0
 package org.trails.descriptor.annotation;
 2  
 
 3  
 import org.trails.descriptor.IMethodDescriptor;
 4  
 
 5  
 
 6  0
 public class MethodDescriptorAnnotationHandler extends AbstractAnnotationHandler
 7  
                 implements DescriptorAnnotationHandler<MethodDescriptor, IMethodDescriptor>
 8  
 {
 9  
 
 10  
         public IMethodDescriptor decorateFromAnnotation(MethodDescriptor annotation, IMethodDescriptor descriptor)
 11  
         {
 12  0
                 setPropertiesFromAnnotation(annotation, descriptor);
 13  0
                 return descriptor;
 14  
         }
 15  
 }