Code Search for Developers
 
 
  

PriceItemType.java from riverock at Krugle


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>
 * &lt;complexType name="PriceItemType">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="ItemInBasket" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="ItemID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         &lt;element name="ItemCurrencyID" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         &lt;element name="ItemPrice" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="ItemNameCurrency" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="ItemDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="ItemImageFileName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="ItemName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="ItemToInvoice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="ItemToInvoiceCountParam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="HiddenParam" type="{}HiddenParamType" maxOccurs="unbounded" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/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

riverock

Main project of riverock is Webmill portal. Webmill is CMS portal with build-in XML/XSLT transformation of content of portlet, JSR-168, JSF and other things.

Project homepage: http://sourceforge.net/projects/riverock
Programming language(s): Java,JSP,SQL,XML
License: other

  CurrencyItemType.java
  CurrencyListType.java
  CurrentBasketType.java
  GroupItemType.java
  GroupListType.java
  HiddenParamType.java
  ItemListType.java
  ObjectFactory.java
  PositionItemType.java
  PriceFieldNameType.java
  PriceItemType.java
  PricePositionType.java
  ShopPageType.java