package at.gv.util.xsd.zkopf.persondata; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * phone numbers * *

Java class for TelephoneAddressType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TelephoneAddressType">
 *   <complexContent>
 *     <extension base="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}AbstractAddressType">
 *       <sequence minOccurs="0">
 *         <element name="Number" type="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}TelcomNumberType"/>
 *       </sequence>
 *       <anyAttribute namespace='##other'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TelephoneAddressType", propOrder = { "number" }) public class TelephoneAddressType extends AbstractAddressType { @XmlElement(name = "Number") protected TelcomNumberType number; /** * Gets the value of the number property. * * @return * possible object is * {@link TelcomNumberType } * */ public TelcomNumberType getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link TelcomNumberType } * */ public void setNumber(TelcomNumberType value) { this.number = value; } }