| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ImmutableTransactionSplit |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Created on Aug 12, 2007 by wyatt | |
| 3 | */ | |
| 4 | package org.homeunix.thecave.buddi.plugin.api.model; | |
| 5 | ||
| 6 | ||
| 7 | public interface ImmutableTransactionSplit extends ImmutableModelObject { | |
| 8 | ||
| 9 | /** | |
| 10 | * Returns the amounts associated with this transaction split | |
| 11 | * @return | |
| 12 | */ | |
| 13 | public long getAmount(); | |
| 14 | ||
| 15 | /** | |
| 16 | * Returns the source associated with this transaction split | |
| 17 | * @return | |
| 18 | */ | |
| 19 | public ImmutableSource getSource(); | |
| 20 | ||
| 21 | } |