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