| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MutableAccountType |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Created on Aug 22, 2007 by wyatt | |
| 3 | */ | |
| 4 | package org.homeunix.thecave.buddi.plugin.api.model; | |
| 5 | ||
| 6 | import org.homeunix.thecave.buddi.plugin.api.exception.InvalidValueException; | |
| 7 | ||
| 8 | public interface MutableAccountType extends ImmutableAccountType { | |
| 9 | ||
| 10 | ||
| 11 | /** | |
| 12 | * Sets the name of this type | |
| 13 | * @param name | |
| 14 | */ | |
| 15 | public void setName(String name) throws InvalidValueException; | |
| 16 | } |