| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| NamedObject |
|
| 1.0;1 |
| 1 | package org.talos.model; | |
| 2 | ||
| 3 | /** | |
| 4 | * This interface describes an object that has a name. Named objects tend to have unique names | |
| 5 | * across the system (it certainly is the case for the other classes in this package). | |
| 6 | */ | |
| 7 | public interface NamedObject { | |
| 8 | ||
| 9 | /** | |
| 10 | * Gets the name of the object | |
| 11 | * @return the name of the object | |
| 12 | */ | |
| 13 | String getName(); | |
| 14 | ||
| 15 | } |