que tiene esta estructura XML:¿Cómo lidiar con JAXB ComplexType con datos de MixedContent?
<Tax>
<Money currency="USD">0.00</Money>
<Description xml:lang="en">
17.5% Non-Recoverable
<ShortName>vatspecial</ShortName>
</Description>
</Tax>
en cuenta que Description
nodo tiene MixedContent
(integrado con el texto y XML) y esta es la parte XSD
respecto Description
nodo:
<xsd:complexType name="TaxDescriptionType">
<xsd:sequence>
<xsd:element name="ShortName" type="xsd:string" />
</xsd:sequence>
<xsd:attribute ref="xml:lang" />
</xsd:complexType>
Todo está bien en este punto, XJC
genera la generat clases de educación como ésta con respecto TaxDescriptionType
:
package org.com.project;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for TaxDescriptionType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="TaxDescriptionType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ShortName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TaxDescriptionType", propOrder = {
"shortName"
})
public class TaxDescriptionType {
@XmlElement(name = "ShortName", required = true)
protected String shortName;
@XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NCName")
protected String lang;
/**
* Gets the value of the shortName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShortName() {
return shortName;
}
/**
* Sets the value of the shortName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShortName(String value) {
this.shortName = value;
}
/**
* Gets the value of the lang property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLang() {
return lang;
}
/**
* Sets the value of the lang property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLang(String value) {
this.lang = value;
}
}
Luego, con la anterior class
soy capaz de trabajar en torno a los elementos de este tipo:
taxDescriptionType.setLang("en");
taxDescriptionType.setShortName("vatspecial");
/* missing value: 17.5% Non-Recoverable */
pero el problema es que yo no se puede encontrar una forma de get
o set
el 17.5% Non-Recoverable
texto del MixedContent-ComplexType
del ejemplo anterior XML
.
Esto es lo que he intentado y no funciona:
- Usado
mixed="true"
atributo de la siguiente manera:
<xsd:complexType name="TaxDescriptionType" mixed="true">
(creo XJC es ignorando el l atributo AST)
Haciendo un poco de investigación, me encontré esto:
JAXB XJC compiler disregarding mixed=true on XML Schema documents
Pero no estoy seguro si esto es la manera de resolver esto. Una de las respuestas dice que esto es un error y en la otra muestra un código que transforma el MixedContent
en un List<Serializable>
y tal vez la siguiente situación será acerca de cómo lidiar con esto:
taxDescriptionType.getContent().add(Serializable element);
(Y realmente no sé cómo tratar con un elemento Serializable
)
¿El parámetro de tipo 'Serializable' de' List' es significativo? –