background image

createUSAddress() Method

<< createPurchaseOrder() Method | PurchaseOrder.java Class Code >>
<< createPurchaseOrder() Method | PurchaseOrder.java Class Code >>
26
U
SING
JAXB
/**
* Create an instance of USAddress
*/
public primer.po.USAddress createUSAddress()
throws javax.xml.bind.JAXBException
{
return ((primer.po.USAddress)
newInstance((primer.po.USAddress.class)));
}
/**
* Create an instance of Comment
*/
public primer.po.Comment createComment()
throws javax.xml.bind.JAXBException
{
return ((primer.po.Comment)
newInstance((primer.po.Comment.class)));
}
/**
* Create an instance of Comment
*/
public primer.po.Comment createComment(String value)
throws javax.xml.bind.JAXBException
{
return new primer.po.impl.CommentImpl(value);
}
/**
* Create an instance of Items
*/
public primer.po.Items createItems()
throws javax.xml.bind.JAXBException
{
return ((primer.po.Items)
newInstance((primer.po.Items.class)));
}
/**
* Create an instance of PurchaseOrderType
*/
public primer.po.PurchaseOrderType
createPurchaseOrderType()
throws javax.xml.bind.JAXBException
{