View Javadoc

1   package org.jfrog.reflect;
2   
3   import java.lang.annotation.Retention;
4   import java.lang.annotation.RetentionPolicy;
5   import java.lang.annotation.Target;
6   import java.lang.annotation.ElementType;
7   
8   /**
9    * Created by IntelliJ IDEA.
10   * User: freds
11   * Date: May 18, 2007
12   * Time: 10:59:32 AM
13   */
14  @Retention(RetentionPolicy.RUNTIME)
15  @Target(ElementType.TYPE)
16  public @interface FieldPrefix {
17      String value() default "";
18  }