| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MutableSource |
|
| 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 MutableSource extends ImmutableSource { | |
| 9 | ||
| 10 | /** | |
| 11 | * Sets this source as deleted | |
| 12 | * @param deleted | |
| 13 | */ | |
| 14 | public void setDeleted(boolean deleted) throws InvalidValueException; | |
| 15 | ||
| 16 | /** | |
| 17 | * Sets the name of this source | |
| 18 | * @param name | |
| 19 | */ | |
| 20 | public void setName(String name) throws InvalidValueException; | |
| 21 | ||
| 22 | /** | |
| 23 | * Sets the notes associated with this source | |
| 24 | * @param notes | |
| 25 | */ | |
| 26 | public void setNotes(String notes) throws InvalidValueException; | |
| 27 | ||
| 28 | } |