|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IFactory.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.assigner; | |
| 8 | ||
| 9 | /** | |
| 10 | * Thi interface is simply a placeholder allowing the framework to identify | |
| 11 | * those classes playing a factory-like role. | |
| 12 | * | |
| 13 | * @author Francesco Russo (frusso@dev.java.net) | |
| 14 | * @version 4.0 | |
| 15 | * @since 1.0 | |
| 16 | */ | |
| 17 | public interface IFactory { | |
| 18 | } |
|
||||||||||