// // 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.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import java.util.ArrayList; import java.util.List; /** * * * Within a tag element, the converter element encapsulates * information specific to a JSF Converter. * * * * <p>Java class for facelet-taglib-tag-converterType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="facelet-taglib-tag-converterType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <group ref="{http://java.sun.com/xml/ns/javaee}descriptionGroup"/> * <element name="converter-id" type="{http://java.sun.com/xml/ns/javaee}string"/> * <element name="handler-class" type="{http://java.sun.com/xml/ns/javaee}fully-qualified-classType" minOccurs="0"/> * <element name="converter-extension" type="{http://java.sun.com/xml/ns/javaee}facelet-taglib-tag-converter-extensionType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "facelet-taglib-tag-converterType", propOrder = { "description", "displayName", "icon", "converterId", "handlerClass", "converterExtension" }) public class FaceletTaglibTagConverterType { protected List<DescriptionType> description; @XmlElement(name = "display-name") protected List<DisplayNameType> displayName; protected List<IconType> icon; @XmlElement(name = "converter-id", required = true) protected String converterId; @XmlElement(name = "handler-class") protected FullyQualifiedClassType handlerClass; @XmlElement(name = "converter-extension") protected List<FaceletTaglibTagConverterExtensionType> converterExtension; /** * Gets the value of the description property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the description property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDescription().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link org.richfaces.bootstrap.demo.jaxb.javaee.DescriptionType } * * */ public List<DescriptionType> getDescription() { if (description == null) { description = new ArrayList<DescriptionType>(); } return this.description; } /** * Gets the value of the displayName property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the displayName property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDisplayName().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link org.richfaces.bootstrap.demo.jaxb.javaee.DisplayNameType } * * */ public List<DisplayNameType> getDisplayName() { if (displayName == null) { displayName = new ArrayList<DisplayNameType>(); } return this.displayName; } /** * Gets the value of the icon property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the icon property. * * <p> * For example, to add a new item, do as follows: * <pre> * getIcon().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link org.richfaces.bootstrap.demo.jaxb.javaee.IconType } * * */ public List<IconType> getIcon() { if (icon == null) { icon = new ArrayList<IconType>(); } return this.icon; } /** * Gets the value of the converterId property. * * @return * possible object is * {@link String } * */ public String getConverterId() { return converterId; } /** * Sets the value of the converterId property. * * @param value * allowed object is * {@link String } * */ public void setConverterId(String value) { this.converterId = value; } /** * Gets the value of the handlerClass property. * * @return * possible object is * {@link org.richfaces.bootstrap.demo.jaxb.javaee.FullyQualifiedClassType } * */ public FullyQualifiedClassType getHandlerClass() { return handlerClass; } /** * Sets the value of the handlerClass property. * * @param value * allowed object is * {@link org.richfaces.bootstrap.demo.jaxb.javaee.FullyQualifiedClassType } * */ public void setHandlerClass(FullyQualifiedClassType value) { this.handlerClass = value; } /** * Gets the value of the converterExtension property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the converterExtension property. * * <p> * For example, to add a new item, do as follows: * <pre> * getConverterExtension().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link org.richfaces.bootstrap.demo.jaxb.javaee.FaceletTaglibTagConverterExtensionType } * * */ public List<FaceletTaglibTagConverterExtensionType> getConverterExtension() { if (converterExtension == null) { converterExtension = new ArrayList<FaceletTaglibTagConverterExtensionType>(); } return this.converterExtension; } }