Class SalesItemType
- java.lang.Object
-
- network.oxalis.peppol.ubl2.jaxb.cac.SalesItemType
-
public class SalesItemType extends Object
Java class for SalesItemType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SalesItemType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Quantity"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}ActivityProperty" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}TaxExclusivePrice" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}TaxInclusivePrice" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}Item"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ActivityPropertyType>activityPropertyprotected ItemTypeitemprotected QuantityTypequantityprotected List<PriceType>taxExclusivePriceprotected List<PriceType>taxInclusivePrice
-
Constructor Summary
Constructors Constructor Description SalesItemType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ActivityPropertyType>getActivityProperty()Gets the value of the activityProperty property.ItemTypegetItem()Gets the value of the item property.QuantityTypegetQuantity()Gets the value of the quantity property.List<PriceType>getTaxExclusivePrice()Gets the value of the taxExclusivePrice property.List<PriceType>getTaxInclusivePrice()Gets the value of the taxInclusivePrice property.voidsetItem(ItemType value)Sets the value of the item property.voidsetQuantity(QuantityType value)Sets the value of the quantity property.
-
-
-
Field Detail
-
quantity
protected QuantityType quantity
-
activityProperty
protected List<ActivityPropertyType> activityProperty
-
item
protected ItemType item
-
-
Method Detail
-
getQuantity
public QuantityType getQuantity()
Gets the value of the quantity property.- Returns:
- possible object is
QuantityType
-
setQuantity
public void setQuantity(QuantityType value)
Sets the value of the quantity property.- Parameters:
value- allowed object isQuantityType
-
getActivityProperty
public List<ActivityPropertyType> getActivityProperty()
Gets the value of the activityProperty 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 activityProperty property.For example, to add a new item, do as follows:
getActivityProperty().add(newItem);Objects of the following type(s) are allowed in the list
ActivityPropertyType
-
getTaxExclusivePrice
public List<PriceType> getTaxExclusivePrice()
Gets the value of the taxExclusivePrice 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 taxExclusivePrice property.For example, to add a new item, do as follows:
getTaxExclusivePrice().add(newItem);Objects of the following type(s) are allowed in the list
PriceType
-
getTaxInclusivePrice
public List<PriceType> getTaxInclusivePrice()
Gets the value of the taxInclusivePrice 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 taxInclusivePrice property.For example, to add a new item, do as follows:
getTaxInclusivePrice().add(newItem);Objects of the following type(s) are allowed in the list
PriceType
-
getItem
public ItemType getItem()
Gets the value of the item property.- Returns:
- possible object is
ItemType
-
-