1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 24 public interface IJavaModifiers { 25 26 35 public boolean isPublic() throws DebugException; 36 45 public boolean isPrivate() throws DebugException; 46 55 public boolean isProtected() throws DebugException; 56 66 public boolean isPackagePrivate() throws DebugException; 67 76 public boolean isFinal() throws DebugException; 77 86 public boolean isStatic() throws DebugException; 87 98 public boolean isSynthetic() throws DebugException; 99 100 101 } 102 103 104 | Popular Tags |