Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Defaultable |
|
| 1.0;1 |
1 | package org.kuali.rice.core.api.mo.common; | |
2 | ||
3 | ||
4 | /** | |
5 | * Represents an object which has a value that designates the object as the default object. | |
6 | * | |
7 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
8 | * | |
9 | */ | |
10 | public interface Defaultable { | |
11 | /** | |
12 | * The default value for this object. | |
13 | * | |
14 | * @return the default value for this object | |
15 | */ | |
16 | boolean isDefaultValue(); | |
17 | } |