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