atg.commerce.pricing.result
Class TaxPrice

java.lang.Object
  extended by atg.commerce.pricing.result.TaxPrice

public class TaxPrice
extends java.lang.Object

Contains the following information about the taxes on an Order:


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Constructor Summary
TaxPrice()
           
 
Method Summary
 PriceAdjustment[] getAdjustments()
          the tax discounts
 double getAmount()
          the total taxes
 double getCityTax()
          the city taxes
 double getCountryTax()
          the country taxes
 double getCountyTax()
          the county taxes
 double getDistrictTax()
          the district taxes
 double getStateTax()
          the state taxes
 void setAdjustments(PriceAdjustment[] pAdjustments)
          the tax discounts
 void setAmount(double pAmount)
          the total taxes
 void setCityTax(double pCityTax)
          the city taxes
 void setCountryTax(double pCountryTax)
          the country taxes
 void setCountyTax(double pCountyTax)
          the county taxes
 void setDistrictTax(double pDistrictTax)
          the district taxes
 void setStateTax(double pStateTax)
          the state taxes
 java.lang.String toString()
          Returns a string form of this price information
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Class version string

Constructor Detail

TaxPrice

public TaxPrice()
Method Detail

setAmount

public void setAmount(double pAmount)
the total taxes

Parameters:
pAmount - new value to set

getAmount

public double getAmount()
the total taxes

Returns:
property Amount

setCityTax

public void setCityTax(double pCityTax)
the city taxes

Parameters:
pCityTax - new value to set

getCityTax

public double getCityTax()
the city taxes

Returns:
property CityTax

setCountyTax

public void setCountyTax(double pCountyTax)
the county taxes

Parameters:
pCountyTax - new value to set

getCountyTax

public double getCountyTax()
the county taxes

Returns:
property CountyTax

setStateTax

public void setStateTax(double pStateTax)
the state taxes

Parameters:
pStateTax - new value to set

getStateTax

public double getStateTax()
the state taxes

Returns:
property StateTax

setDistrictTax

public void setDistrictTax(double pDistrictTax)
the district taxes

Parameters:
pDistrictTax - new value to set

getDistrictTax

public double getDistrictTax()
the district taxes

Returns:
property DistrictTax

setCountryTax

public void setCountryTax(double pCountryTax)
the country taxes

Parameters:
pCountryTax - new value to set

getCountryTax

public double getCountryTax()
the country taxes

Returns:
property CountryTax

setAdjustments

public void setAdjustments(PriceAdjustment[] pAdjustments)
the tax discounts

Parameters:
pAdjustments - new value to set

getAdjustments

public PriceAdjustment[] getAdjustments()
the tax discounts

Returns:
property Adjustments

toString

public java.lang.String toString()
Returns a string form of this price information

Overrides:
toString in class java.lang.Object