package annotation_reference; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for class-ext complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="class-ext"> * <complexContent> * <extension base="{}class-common"> * <sequence> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "class-ext", propOrder = { "country", "code" }) public class ClassExt extends ClassCommon { @XmlElement(required = true) protected String country; @XmlElement(required = true) protected String code; /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } }