0

現在、次のようなXSDがあります。

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  <xs:element name="apiCategoryResponse">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="category"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="category">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="version"/>
        <xs:element ref="name"/>
        <xs:element ref="desc"/>
        <xs:element ref="id"/>
        <xs:element maxOccurs="unbounded" ref="subCategory"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="subCategory">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="childCategory"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="version" type="xs:integer"/>
  <xs:element name="name" type="xs:NCName"/>
  <xs:element name="desc" type="xs:NCName"/>
  <xs:element name="id" type="xs:integer"/>
  <xs:element name="childCategory">
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="childCategory"/>
        <xs:element ref="desc"/>
        <xs:element ref="id"/>
        <xs:element ref="name"/>
        <xs:element ref="version"/>
      </xs:choice>
    </xs:complexType>
  </xs:element>
</xs:schema>

XJC を使用して Java コードを生成すると、ChildCategory は次のようなものを生成します。

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "childCategoryOrDescOrId"
})
@XmlRootElement(name = "childCategory")
public class ChildCategory {

    @XmlElementRefs({
        @XmlElementRef(name = "name", type = JAXBElement.class),
        @XmlElementRef(name = "id", type = JAXBElement.class),
        @XmlElementRef(name = "version", type = JAXBElement.class),
        @XmlElementRef(name = "childCategory", type = ChildCategory.class),
        @XmlElementRef(name = "desc", type = JAXBElement.class)
    })
    protected List<Object> childCategoryOrDescOrId;

    /**
     * Gets the value of the childCategoryOrDescOrId 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 childCategoryOrDescOrId property.
     * 
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getChildCategoryOrDescOrId().add(newItem);
     * </pre>
     * 
     * 
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
     * {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
     * {@link JAXBElement }{@code <}{@link String }{@code >}
     * {@link ChildCategory }
     * {@link JAXBElement }{@code <}{@link String }{@code >}
     * 
     * 
     */
    public List<Object> getChildCategoryOrDescOrId() {
        if (childCategoryOrDescOrId == null) {
            childCategoryOrDescOrId = new ArrayList<Object>();
        }
        return this.childCategoryOrDescOrId;
    }

}

そして問題は、desc/id/name/etc のリストにしたくないということです。

childCategory は、別の childCategory リストと独自の desc/name/version などの値を含むことができるリストですが、これらのフィールドに個別のセッターとゲッターが必要です。基本的に、明示的なセッターとゲッターを XJC から自動生成したいと考えています。他のすべてが失敗した場合は、いつでも手動でコーディングできますが、XJC に希望どおりにコードを生成させるためのトリックがあるかどうか疑問に思っていました。

4

1 に答える 1

2

なぜあなたはあなたがしたのと同じことをしないのですかcategory

<xs:element name="childCategory">
  <xs:complexType>
    <xs:sequence>
      <xs:element ref="desc" />
      <xs:element ref="id" />
      <xs:element ref="name" />
      <xs:element ref="version" />
      <xs:element ref="childCategory" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>
</xs:element>
于 2012-10-12T21:57:28.487 に答える