|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
IOutcomeFactory.java | - | - | - | - |
|
1 | /** | |
2 | * JTRunner is free software; you can redistribute it and/or modify it under the | |
3 | * terms of the GNU General Public License as published by the Free Software | |
4 | * Foundation; either version 2, or (at your option) any later version. | |
5 | */ | |
6 | ||
7 | package jtr.test; | |
8 | ||
9 | import jtr.assigner.IFactory; | |
10 | ||
11 | /** | |
12 | * This interface has to be implemented along with the <code>IOutcome</code> | |
13 | * interface for providing a custom implementation of a JTRunner outcome. | |
14 | * | |
15 | * @author Francesco Russo (frusso@dev.java.net) | |
16 | * @version 4.0 | |
17 | * @since 1.0 | |
18 | * @see jtr.test.IOutcome | |
19 | */ | |
20 | public interface IOutcomeFactory<T extends IOutcome> extends IFactory { | |
21 | ||
22 | public T getInstance(); | |
23 | } |
|