// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // 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: 2012.04.30 at 08:41:00 AM PDT // package org.richfaces.bootstrap.demo.jaxb.javaee; import javax.xml.bind.annotation.*; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * * * This type adds an "id" attribute to xsd:string. * * * * <p>Java class for xsdStringType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="xsdStringType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "xsdStringType", propOrder = { "value" }) @XmlSeeAlso({ DescriptionType.class }) public class XsdStringType { @XmlValue protected java.lang.String value; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected java.lang.String id; /** * Gets the value of the value property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setValue(java.lang.String value) { this.value = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link java.lang.String } * */ public java.lang.String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link java.lang.String } * */ public void setId(java.lang.String value) { this.id = value; } }