1 /*2 * Created on Feb 3, 20063 */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 BaseShippingMethod11 {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