KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > shipping > FixedCostShippingMethod


1 /*
2  * Created on Feb 3, 2006
3  */

4 package com.openedit.store.shipping;
5
6 import org.openedit.money.Money;
7
8 import com.openedit.store.Cart;
9
10 public class FixedCostShippingMethod extends BaseShippingMethod
11 {
12     public Money getCost(Cart inCart)
13     {
14         return getCost();
15     }
16
17     public boolean applies(Cart inCart)
18     {
19         return false;
20     }
21
22 }
23
Popular Tags