| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| GiftCardAccountSvc |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Created on Jul 3, 2004 | |
| 3 | * | |
| 4 | * To change the template for this generated file go to | |
| 5 | * Window - Preferences - Java - Code Generation - Code and Comments | |
| 6 | */ | |
| 7 | package biz.xsoftware.examples.basic; | |
| 8 | ||
| 9 | /** | |
| 10 | * Interface to what would normally be a real GiftCarAccountSvc. | |
| 11 | * @author Dean Hiller | |
| 12 | */ | |
| 13 | public interface GiftCardAccountSvc { | |
| 14 | ||
| 15 | public void putMoneyOnCard(int cardId, double money); | |
| 16 | ||
| 17 | public void takeMoneyFromCard(int cardId, double money); | |
| 18 | } |