// // 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; /** * * * Defines the canonical name of a tag or attribute being * defined. * * The name must conform to the lexical rules for an NCName * * * * <p>Java class for facelet-taglib-canonical-nameType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="facelet-taglib-canonical-nameType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>NCName"> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "facelet-taglib-canonical-nameType", propOrder = { "value" }) public class FaceletTaglibCanonicalNameType { @XmlValue @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") 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; } }