001 package org.tynamo.descriptor.annotation;
002
003 import org.tynamo.descriptor.IMethodDescriptor;
004
005
006 public class MethodDescriptorAnnotationHandler extends AbstractAnnotationHandler
007 implements DescriptorAnnotationHandler<MethodDescriptor, IMethodDescriptor>
008 {
009
010 public IMethodDescriptor decorateFromAnnotation(MethodDescriptor annotation, IMethodDescriptor descriptor)
011 {
012 setPropertiesFromAnnotation(annotation, descriptor);
013 return descriptor;
014 }
015 }