1 11 package org.eclipse.jdt.core; 12 13 21 public interface IMember extends IJavaElement, ISourceReference, ISourceManipulation, IParent { 22 32 String [] getCategories() throws JavaModelException; 33 41 IClassFile getClassFile(); 42 50 ICompilationUnit getCompilationUnit(); 51 59 IType getDeclaringType(); 60 73 int getFlags() throws JavaModelException; 74 92 ISourceRange getJavadocRange() throws JavaModelException; 93 106 ISourceRange getNameRange() throws JavaModelException; 107 125 int getOccurrenceCount(); 126 133 ITypeRoot getTypeRoot(); 134 147 IType getType(String name, int occurrenceCount); 148 155 boolean isBinary(); 156 } 157 | Popular Tags |