![JAR search and dependency download from the Maven repository](/logo.png)
com.example.ipo.jaxb.USAddress Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.09.29 at 08:12:33 PM PDT
//
package com.example.ipo.jaxb;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for USAddress complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="USAddress">
* <complexContent>
* <extension base="{http://www.example.com/IPO}Address">
* <sequence>
* <element name="state" type="{http://www.example.com/IPO}USState"/>
* <element name="zip" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "USAddress", propOrder = {
"state",
"zip"
})
public class USAddress
extends Address
{
@XmlElement(required = true)
protected USState state;
@XmlElement(required = true)
@XmlSchemaType(name = "positiveInteger")
protected BigInteger zip;
/**
* Gets the value of the state property.
*
* @return
* possible object is
* {@link USState }
*
*/
public USState getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link USState }
*
*/
public void setState(USState value) {
this.state = value;
}
/**
* Gets the value of the zip property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getZip() {
return zip;
}
/**
* Sets the value of the zip property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setZip(BigInteger value) {
this.zip = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy