1 11 12 package org.eclipse.jdt.internal.ui.search; 13 14 import org.eclipse.jdt.core.IJavaElement; 15 16 public class ExceptionOccurrencesGroupKey extends JavaElementLine { 17 private boolean fIsException; 18 19 22 public ExceptionOccurrencesGroupKey(IJavaElement element, int line, String lineContents, boolean isException) { 23 super(element, line, lineContents); 24 fIsException= isException; 25 } 26 27 public boolean isException() { 28 return fIsException; 29 } 30 31 public void setException(boolean isException) { 32 fIsException= isException; 33 } 34 } 35 | Popular Tags |