View Javadoc

1   /*
2    * Description.java
3    * Created on 14 Декабрь 2005 г., 23:59
4    */
5   
6   package org.weda.property.annotations;
7   
8   import java.lang.annotation.ElementType;
9   import java.lang.annotation.Retention;
10  import java.lang.annotation.RetentionPolicy;
11  import java.lang.annotation.Target;
12  
13  /**
14   *
15   * @author Mikhail Titov
16   */
17  @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME)
18  public @interface Description {
19      String displayName();
20      String pattern() default "";
21      String mimeType() default "";
22  }