1 8 9 package mx4j; 10 11 import java.lang.reflect.Constructor ; 12 import java.lang.reflect.Method ; 13 14 27 public interface MBeanDescription 28 { 29 33 public String getMBeanDescription(); 34 38 public String getConstructorDescription(Constructor ctor); 39 43 public String getConstructorParameterName(Constructor ctor, int index); 44 48 public String getConstructorParameterDescription(Constructor ctor, int index); 49 53 public String getAttributeDescription(String attribute); 54 58 public String getOperationDescription(Method operation); 59 63 public String getOperationParameterName(Method method, int index); 64 68 public String getOperationParameterDescription(Method method, int index); 69 } 70 | Popular Tags |