1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.core.runtime.CoreException; 15 16 28 public interface IWatchpoint extends IBreakpoint { 29 37 public boolean isAccess() throws CoreException; 38 46 public void setAccess(boolean access) throws CoreException; 47 55 public boolean isModification() throws CoreException; 56 64 public void setModification(boolean modification) throws CoreException; 65 72 public boolean supportsAccess(); 73 80 public boolean supportsModification(); 81 82 } 83 84 | Popular Tags |