开发者

How to override the default name for in JAXB using a external binding file?

开发者 https://www.devze.com 2023-03-26 08:12 出处:网络
I have an element that looks something like this. <xsd:element name=\"container\"> <xsd:complexType>

I have an element that looks something like this.

 <xsd:element name="container">
    <xsd:complexType>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
        <xsd:element ref="navmap"/>
        <xsd:element ref="keymap" />
        <xsd:element ref="container" />
        <xsd:element ref="ad" />
        <xsd:element ref="button" />
        <xsd:element ref="checkbox" />        
      </xsd:choice>
    </xsd:complexType>
  </xsd:element>

Here is the d开发者_运维百科efault code that gets created for this element.

@XmlElements({
    @XmlElement(name = "navmap", type = Navmap.class),
    @XmlElement(name = "keymap", type = Keymap.class),
    @XmlElement(name = "container", type = Container.class),
    @XmlElement(name = "ad", type = Ad.class),
    @XmlElement(name = "button", type = Button.class),
    @XmlElement(name = "checkbox", type = Checkbox.class),
})
protected List<Object> navmapOrKeymapOrContainer;

My question is What do I need to put in my .xjb bindings file to change the default generated name from navmapOrKeymapOrContainer to something else like children?


Example:

<xs:complexType>
  <xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:annotation>
      <xs:appinfo>
        <jaxb:property name="Shapes"/>
      </xs:appinfo>
    </xs:annotation>
    <xs:element name="Rectangle" type="Rectangle"/>
    <xs:element name="Square" type="Square"/>
    <xs:element name="Circle" type="Circle"/>
  </xs:choice>
</xs:complexType>

Adapt this in your binding file and it will do. See here for reference.

Listing 11 tells the secret:

<jxb:bindings version="1.0" 
  xmlns:jxb="http://java.sun.com/xml/ns/jaxb" 
  xmlns:xs="http://www.w3.org/2001/XMLSchema" 
  xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
  jxb:extensionBindingPrefixes="xjc">
<jxb:bindings schemaLocation="po4.xsd" node="/xs:schema">
  <jxb:globalBindings>
    <xjc:superClass name="com.syh.
    <xjc:serializable uid="12343"/>
  </jxb:globalBindings>
  <jxb:bindings node="//xs:element[@name='Widgets']//xs:complexType//xs:choice">
      <jxb:property name="Shapes"/>
  </jxb:bindings>
</jxb:bindings>
0

精彩评论

暂无评论...
验证码 换一张
取 消