001    package org.tynamo.descriptor.annotation.handlers;
002    
003    import org.tynamo.descriptor.annotation.handlers.DescriptorAnnotationHandler;
004    
005    import java.lang.annotation.Retention;
006    import java.lang.annotation.RetentionPolicy;
007    
008    @Retention(RetentionPolicy.RUNTIME)
009    public @interface HandledBy
010    {
011            Class<? extends DescriptorAnnotationHandler> value();
012    }