public class Itemtype extends Object
Java class for itemtype complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="itemtype"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="title" type="{http://jboss.org/resteasy/test/providers/jaxb/generated/order}stringtype"/> <element name="note" type="{http://jboss.org/resteasy/test/providers/jaxb/generated/order}stringtype" minOccurs="0"/> <element name="quantity" type="{http://jboss.org/resteasy/test/providers/jaxb/generated/order}inttype"/> <element name="price" type="{http://jboss.org/resteasy/test/providers/jaxb/generated/order}dectype"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
note |
protected BigDecimal |
price |
protected BigInteger |
quantity |
protected String |
title |
Constructor and Description |
---|
Itemtype() |
Modifier and Type | Method and Description |
---|---|
String |
getNote()
Gets the value of the note property.
|
BigDecimal |
getPrice()
Gets the value of the price property.
|
BigInteger |
getQuantity()
Gets the value of the quantity property.
|
String |
getTitle()
Gets the value of the title property.
|
void |
setNote(String value)
Sets the value of the note property.
|
void |
setPrice(BigDecimal value)
Sets the value of the price property.
|
void |
setQuantity(BigInteger value)
Sets the value of the quantity property.
|
void |
setTitle(String value)
Sets the value of the title property.
|
protected String title
protected String note
protected BigInteger quantity
protected BigDecimal price
public String getTitle()
String
public void setTitle(String value)
value
- allowed object is
String
public String getNote()
String
public void setNote(String value)
value
- allowed object is
String
public BigInteger getQuantity()
BigInteger
public void setQuantity(BigInteger value)
value
- allowed object is
BigInteger
public BigDecimal getPrice()
BigDecimal
public void setPrice(BigDecimal value)
value
- allowed object is
BigDecimal
Copyright © 2012. All Rights Reserved.