| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Graphable |
|
| 1.0;1 |
| 1 | package org.paneris.jammyjoes.model; | |
| 2 | ||
| 3 | import java.sql.Timestamp; | |
| 4 | ||
| 5 | import org.paneris.jammyjoes.mvp.AffiliateTotals; | |
| 6 | ||
| 7 | public interface Graphable { | |
| 8 | ||
| 9 | public Timestamp getDate(); | |
| 10 | public double getAmountForGraph(); | |
| 11 | public void total(AffiliateTotals totals); | |
| 12 | ||
| 13 | } |