Show PriceItemType.java syntax highlighted
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.4-b01-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2006.11.26 at 03:57:27 PM MSK
//
package org.riverock.commerce.schema.shop;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for PriceItemType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="PriceItemType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ItemInBasket" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ItemID" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="ItemCurrencyID" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="ItemPrice" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemNameCurrency" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ItemImageFileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ItemName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ItemToInvoice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ItemToInvoiceCountParam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="HiddenParam" type="{}HiddenParamType" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PriceItemType", propOrder = {
"itemInBasket",
"itemID",
"itemCurrencyID",
"itemPrice",
"itemNameCurrency",
"itemDescription",
"itemImageFileName",
"itemName",
"itemToInvoice",
"itemToInvoiceCountParam",
"hiddenParam"
})
public class PriceItemType {
@XmlElement(name = "ItemInBasket")
protected String itemInBasket;
@XmlElement(name = "ItemID")
protected long itemID;
@XmlElement(name = "ItemCurrencyID")
protected long itemCurrencyID;
@XmlElement(name = "ItemPrice", required = true)
protected String itemPrice;
@XmlElement(name = "ItemNameCurrency", required = true)
protected String itemNameCurrency;
@XmlElement(name = "ItemDescription")
protected String itemDescription;
@XmlElement(name = "ItemImageFileName")
protected String itemImageFileName;
@XmlElement(name = "ItemName", required = true)
protected String itemName;
@XmlElement(name = "ItemToInvoice")
protected String itemToInvoice;
@XmlElement(name = "ItemToInvoiceCountParam")
protected String itemToInvoiceCountParam;
@XmlElement(name = "HiddenParam")
protected List<HiddenParamType> hiddenParam;
/**
* Gets the value of the itemInBasket property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemInBasket() {
return itemInBasket;
}
/**
* Sets the value of the itemInBasket property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemInBasket(String value) {
this.itemInBasket = value;
}
/**
* Gets the value of the itemID property.
*
*/
public long getItemID() {
return itemID;
}
/**
* Sets the value of the itemID property.
*
*/
public void setItemID(long value) {
this.itemID = value;
}
/**
* Gets the value of the itemCurrencyID property.
*
*/
public long getItemCurrencyID() {
return itemCurrencyID;
}
/**
* Sets the value of the itemCurrencyID property.
*
*/
public void setItemCurrencyID(long value) {
this.itemCurrencyID = value;
}
/**
* Gets the value of the itemPrice property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemPrice() {
return itemPrice;
}
/**
* Sets the value of the itemPrice property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemPrice(String value) {
this.itemPrice = value;
}
/**
* Gets the value of the itemNameCurrency property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemNameCurrency() {
return itemNameCurrency;
}
/**
* Sets the value of the itemNameCurrency property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemNameCurrency(String value) {
this.itemNameCurrency = value;
}
/**
* Gets the value of the itemDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemDescription() {
return itemDescription;
}
/**
* Sets the value of the itemDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemDescription(String value) {
this.itemDescription = value;
}
/**
* Gets the value of the itemImageFileName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemImageFileName() {
return itemImageFileName;
}
/**
* Sets the value of the itemImageFileName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemImageFileName(String value) {
this.itemImageFileName = value;
}
/**
* Gets the value of the itemName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemName() {
return itemName;
}
/**
* Sets the value of the itemName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemName(String value) {
this.itemName = value;
}
/**
* Gets the value of the itemToInvoice property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemToInvoice() {
return itemToInvoice;
}
/**
* Sets the value of the itemToInvoice property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemToInvoice(String value) {
this.itemToInvoice = value;
}
/**
* Gets the value of the itemToInvoiceCountParam property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getItemToInvoiceCountParam() {
return itemToInvoiceCountParam;
}
/**
* Sets the value of the itemToInvoiceCountParam property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setItemToInvoiceCountParam(String value) {
this.itemToInvoiceCountParam = value;
}
/**
* Gets the value of the hiddenParam property.
*
* <p>
* 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 <CODE>set</CODE> method for the hiddenParam property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getHiddenParam().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link HiddenParamType }
*
*
*/
public List<HiddenParamType> getHiddenParam() {
if (hiddenParam == null) {
hiddenParam = new ArrayList<HiddenParamType>();
}
return this.hiddenParam;
}
}
See more files for this project here