blob: 36b21cdc5de205580065b503cb8f636b8147da0b [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.impl;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/*
* Implementors are valid compilation contexts from which we can
* escape in case of error:
* i.e. method | type | compilation unit
*/
import org.eclipse.jdt.internal.compiler.CompilationResult;
public interface ReferenceContext {
public void abort(int abortLevel);
public CompilationResult compilationResult();
void tagAsHavingErrors();
}