]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/TestResultListener.java
git-svn-id: https://svn.argeo.org/slc/trunk@1286 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / TestResultListener.java
1 package org.argeo.slc.core.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 }