1 23 24 32 33 package com.sun.enterprise.deployment.annotation; 34 35 import java.lang.reflect.Method ; 36 import java.lang.reflect.Field ; 37 import java.lang.reflect.Constructor ; 38 39 44 public interface ComponentInfo { 45 46 49 public Constructor [] getConstructors(); 50 51 54 public Method [] getMethods(); 55 56 59 public Field [] getFields(); 60 61 } 62 | Popular Tags |