1 12 package org.eclipse.jdt.core; 13 14 20 public interface IMethod extends IMember { 21 31 String getElementName(); 32 52 String [] getExceptionTypes() throws JavaModelException; 53 54 70 String [] getTypeParameterSignatures() throws JavaModelException; 71 81 ITypeParameter[] getTypeParameters() throws JavaModelException; 82 88 int getNumberOfParameters(); 89 99 String getKey(); 100 114 String [] getParameterNames() throws JavaModelException; 115 132 String [] getParameterTypes(); 133 149 String [] getRawParameterNames() throws JavaModelException; 150 168 String getReturnType() throws JavaModelException; 169 189 String getSignature() throws JavaModelException; 190 198 ITypeParameter getTypeParameter(String name); 199 207 boolean isConstructor() throws JavaModelException; 208 209 224 boolean isMainMethod() throws JavaModelException; 225 232 boolean isResolved(); 233 248 boolean isSimilar(IMethod method); 249 } 250 | Popular Tags |