001package com.hammurapi.convert;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * Marks method as a converter method to the return type.
010 * @author Pavel
011 *
012 */
013@Target({ElementType.METHOD})
014@Retention(RetentionPolicy.RUNTIME)
015public @interface ConverterMethod {
016        
017                
018}