// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.07.21 at 10:48:55 AM CEST // package org.jboss.test.osgi.example.jaxb.bundle; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for companyType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="companyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="address" type="{http://www.w3.org/2001/XMLSchema}anyType"/> * <element ref="{}contact"/> * </sequence> * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "companyType", propOrder = { "address", "contact" }) public class CompanyType { @XmlElement(required = true) protected Object address; @XmlElement(required = true) protected ContactType contact; @XmlAttribute protected String name; /** * Gets the value of the address property. * * @return possible object is {@link Object } * */ public Object getAddress() { return address; } /** * Sets the value of the address property. * * @param value allowed object is {@link Object } * */ public void setAddress(Object value) { this.address = value; } /** * Gets the value of the contact property. * * @return possible object is {@link ContactType } * */ public ContactType getContact() { return contact; } /** * Sets the value of the contact property. * * @param value allowed object is {@link ContactType } * */ public void setContact(ContactType value) { this.contact = value; } /** * Gets the value of the name property. * * @return possible object is {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value allowed object is {@link String } * */ public void setName(String value) { this.name = value; } }