1 23 24 25 package com.sun.enterprise.tools.verifier.apiscan.classfile; 26 27 import java.util.Collection ; 28 29 32 public interface Method { 33 36 ClassFile getOwningClass(); 37 38 41 String getName(); 42 43 46 String getDescriptor(); 47 48 51 int getAccess(); 52 53 57 String getSignature(); 58 59 62 String [] getExceptions(); 63 64 70 Collection <MethodRef> getReferencedMethods(); 71 72 78 Collection <String > getReferencedClasses(); 79 80 83 MethodRef getSelfReference(); 84 85 89 boolean isNative(); 90 91 } 92 | Popular Tags |