1 29 30 package com.caucho.jmx; 31 32 import java.lang.annotation.ElementType ; 33 import java.lang.annotation.Retention ; 34 import java.lang.annotation.RetentionPolicy ; 35 import java.lang.annotation.Target ; 36 37 @Target ({ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER}) 38 @Retention (RetentionPolicy.RUNTIME) 39 public @interface Description { 40 public String value(); 41 } 42 | Popular Tags |