1 11 package org.eclipse.jdt.internal.compiler.impl; 12 17 18 import org.eclipse.jdt.core.compiler.CategorizedProblem; 19 import org.eclipse.jdt.internal.compiler.CompilationResult; 20 21 public interface ReferenceContext { 22 void abort(int abortLevel, CategorizedProblem problem); 23 CompilationResult compilationResult(); 24 boolean hasErrors(); 25 void tagAsHavingErrors(); 26 } 27 | Popular Tags |