KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > adjustments > Adjustment


1 /*
2  * Created on Aug 25, 2004
3  */

4 package com.openedit.store.adjustments;
5
6 import org.openedit.money.Money;
7
8 import com.openedit.store.Cart;
9 import com.openedit.store.CartItem;
10
11 /**
12  * @author Matthew Avery, mavery@einnovation.com
13  */

14 public interface Adjustment
15 {
16     public abstract Money adjust( Cart inCart, CartItem inItem );
17 }
Popular Tags