1 11 package org.eclipse.jdt.internal.compiler.env; 12 13 public interface ISourceMethod extends IGenericMethod { 14 15 18 19 int getDeclarationSourceEnd(); 20 23 24 int getDeclarationSourceStart(); 25 32 33 char[][] getExceptionTypeNames(); 34 37 38 int getNameSourceEnd(); 39 42 43 int getNameSourceStart(); 44 51 52 char[] getReturnTypeName(); 53 57 char[][] getTypeParameterNames(); 58 62 char[][][] getTypeParameterBounds(); 63 } 64 | Popular Tags |