1 11 package org.eclipse.jdt.debug.core; 12 13 14 import org.eclipse.core.runtime.CoreException; 15 16 27 public interface IJavaExceptionBreakpoint extends IJavaBreakpoint { 28 38 public void setInclusionFilters(String [] filters) throws CoreException; 39 40 49 public String [] getInclusionFilters() throws CoreException; 50 51 61 public boolean isCaught() throws CoreException; 62 72 public boolean isUncaught() throws CoreException; 73 83 public void setCaught(boolean caught) throws CoreException; 84 93 public void setUncaught(boolean uncaught) throws CoreException; 94 103 public boolean isChecked() throws CoreException; 104 105 114 public String getExceptionTypeName(); 115 116 127 public void setFilters(String [] filters, boolean inclusive) throws CoreException; 128 129 139 public void setExclusionFilters(String [] filters) throws CoreException; 140 141 150 public String [] getFilters() throws CoreException; 151 152 161 public String [] getExclusionFilters() throws CoreException; 162 163 171 public boolean isInclusiveFiltered() throws CoreException; 172 } 173 174 | Popular Tags |