1 11 package org.eclipse.jdt.core.util; 12 13 21 public interface IEnclosingMethodAttribute extends IClassFileAttribute { 22 23 30 char[] getEnclosingClass(); 31 32 37 int getEnclosingClassIndex(); 38 39 46 char[] getMethodDescriptor(); 47 48 53 int getMethodDescriptorIndex(); 54 55 62 char[] getMethodName(); 63 64 69 int getMethodNameIndex(); 70 71 76 int getMethodNameAndTypeIndex(); 77 } 78 | Popular Tags |