blob: b188cf5e3cafe55d8e82ac68c030cf18ad487177 [file] [log] [blame]
package junit.runner;
// The following line was removed for compatibility with Android libraries.
//import java.awt.Component;
import junit.framework.*;
/**
* A view to show a details about a failure
*/
public interface FailureDetailView {
// The following definition was removed for compatibility with Android
// libraries.
// /**
// * Returns the component used to present the TraceView
// */
// public Component getComponent();
/**
* Shows details of a TestFailure
*/
public void showFailure(TestFailure failure);
/**
* Clears the view
*/
public void clear();
}