background image

createPurchaseOrder() Method

<< ObjectFactory.java Class Code | createUSAddress() Method >>
<< ObjectFactory.java Class Code | createUSAddress() Method >>
S
CHEMA
-D
ERIVED
JAXB C
LASSES
25
throws javax.xml.bind.JAXBException
{
return super.newInstance(javaContentInterface);
}
/**
* Get the specified property. This method can only be
* used to get provider specific properties.
* Attempting to get an undefined property will result
* in a PropertyException being thrown.
*/
public Object getProperty(String name)
throws javax.xml.bind.PropertyException
{
return super.getProperty(name);
}
/**
* Set the specified property. This method can only be
* used to set provider specific properties.
* Attempting to set an undefined property will result
* in a PropertyException being thrown.
*/
public void setProperty(String name, Object value)
throws javax.xml.bind.PropertyException
{
super.setProperty(name, value);
}
/**
* Create an instance of PurchaseOrder
*/
public primer.po.PurchaseOrder createPurchaseOrder()
throws javax.xml.bind.JAXBException
{
return ((primer.po.PurchaseOrder)
newInstance((primer.po.PurchaseOrder.class)));
}
/**
* Create an instance of ItemsItemType
*/
public primer.po.Items.ItemType createItemsItemType()
throws javax.xml.bind.JAXBException
{
return ((primer.po.Items.ItemType)
newInstance((primer.po.Items.ItemType.class)));
}