Package org.cxml
Class Tax
- java.lang.Object
-
- org.cxml.Tax
-
public class Tax extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Descriptiondescriptionprotected java.util.List<Extrinsic>extrinsicprotected Moneymoneyprotected java.util.List<TaxDetail>taxDetail
-
Constructor Summary
Constructors Constructor Description Tax()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescriptiongetDescription()Gets the value of the description property.java.util.List<Extrinsic>getExtrinsic()Gets the value of the extrinsic property.MoneygetMoney()Gets the value of the money property.java.util.List<TaxDetail>getTaxDetail()Gets the value of the taxDetail property.voidsetDescription(Description value)Sets the value of the description property.voidsetMoney(Money value)Sets the value of the money property.
-
-
-
Field Detail
-
money
protected Money money
-
description
protected Description description
-
taxDetail
protected java.util.List<TaxDetail> taxDetail
-
extrinsic
protected java.util.List<Extrinsic> extrinsic
-
-
Method Detail
-
getMoney
public Money getMoney()
Gets the value of the money property.- Returns:
- possible object is
Money
-
setMoney
public void setMoney(Money value)
Sets the value of the money property.- Parameters:
value- allowed object isMoney
-
getDescription
public Description getDescription()
Gets the value of the description property.- Returns:
- possible object is
Description
-
setDescription
public void setDescription(Description value)
Sets the value of the description property.- Parameters:
value- allowed object isDescription
-
getTaxDetail
public java.util.List<TaxDetail> getTaxDetail()
Gets the value of the taxDetail property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the taxDetail property.For example, to add a new item, do as follows:
getTaxDetail().add(newItem);Objects of the following type(s) are allowed in the list
TaxDetail
-
getExtrinsic
public java.util.List<Extrinsic> getExtrinsic()
Gets the value of the extrinsic property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the extrinsic property.For example, to add a new item, do as follows:
getExtrinsic().add(newItem);Objects of the following type(s) are allowed in the list
Extrinsic
-
-