All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squeakysand.schema.javaee.String Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2011.12.29 at 01:35:33 AM PST 
//


package com.squeakysand.schema.javaee;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 * 
 * 	This is a special string datatype that is defined by Java EE as
 * 	a base type for defining collapsed strings. When schemas
 * 	require trailing/leading space elimination as well as
 * 	collapsing the existing whitespace, this base type may be
 * 	used.
 * 
 *       
 * 
 * 

Java class for string complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="string">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>token">
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "string", propOrder = { "value" }) @XmlSeeAlso({ DisplayNameType.class, MultiplicityType.class, JavaTypeType.class, SessionTypeType.class, MessageDestinationUsageType.class, GenericBooleanType.class, CmpVersionType.class, WarPathType.class, PersistenceContextTypeType.class, ResAuthType.class, MimeTypeType.class, ResSharingScopeType.class, JavaIdentifierType.class, TransAttributeType.class, ResultTypeMappingType.class, PersistenceTypeType.class, FacesConfigDefaultValueType.class, PathType.class, DispatcherType.class, MethodNameType.class, AuthMethodType.class, RoleNameType.class, TransportGuaranteeType.class, VariableScopeType.class, TransactionTypeType.class, FacesConfigManagedBeanScopeOrNoneType.class, EnvEntryTypeValuesType.class, FacesConfigFromViewIdType.class, MessageDestinationLinkType.class, FacesConfigSuggestedValueType.class, CmrFieldTypeType.class, JndiNameType.class, EjbRefTypeType.class, MethodIntfType.class, EjbLinkType.class, ServletLinkType.class, FullyQualifiedClassType.class, NonEmptyStringType.class, BodyContentType.class }) public class String { @XmlValue @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected java.lang.String value; @XmlAttribute(name = "id") @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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy