]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/test/TestResultListener.java
Improve SWT packaging
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / test / TestResultListener.java
1 package org.argeo.slc.test;
2
3 /** Listener to the operations on a test result. */
4 public interface TestResultListener<T extends TestResult> {
5 /** Notified when a part was added to a test result. */
6 public void resultPartAdded(T testResult, TestResultPart testResultPart);
7
8 /** Stops listening and release the related resources. */
9 public void close(T testResult);
10 }