1 11 package org.eclipse.jdt.core.util; 12 13 21 public interface IMethodInfo { 22 23 30 char[] getDescriptor(); 31 32 37 int getDescriptorIndex(); 38 39 46 int getAccessFlags(); 47 48 55 char[] getName(); 56 57 62 int getNameIndex(); 63 64 71 boolean isClinit(); 72 73 80 boolean isConstructor(); 81 82 91 boolean isSynthetic(); 92 93 100 boolean isDeprecated(); 101 102 109 ICodeAttribute getCodeAttribute(); 110 111 116 IExceptionAttribute getExceptionAttribute(); 117 118 125 int getAttributeCount(); 126 127 138 IClassFileAttribute[] getAttributes(); 139 } 140 | Popular Tags |