
/**
 * PriceTax.java
 *
 *
 * Created: Tue Nov 19 22:39:23 2002
 *
 * @author <a href="mailto:bina@cse.buffalo.edu "</a>
 * @version
 */

public class PriceTax {
   double total;
   double tax;
   public PriceTax (double sum, double tx){
      total = sum;
      tax = tx;
   }
   double getTax()
   {
      return tax;}

   double getTotal()
   {
      return total;}

}// PriceTax
