1 11 package org.eclipse.jdt.internal.compiler.env; 12 13 19 public interface IBinaryMethod extends IGenericMethod { 20 21 24 IBinaryAnnotation[] getAnnotations(); 25 26 35 Object getDefaultValue(); 36 37 44 char[][] getExceptionTypeNames(); 45 46 50 char[] getGenericSignature(); 51 52 60 char[] getMethodDescriptor(); 61 62 66 IBinaryAnnotation[] getParameterAnnotations(int index); 67 68 73 char[] getSelector(); 74 75 78 long getTagBits(); 79 80 83 boolean isClinit(); 84 } 85 | Popular Tags |