修改我的 *-items.xml 文件后无法生成 class 模型

Unable to generate class model after modifying my *-items.xml file

这是我的 *-items.xml 文件:

    <?xml version="1.0" encoding="ISO-8859-1"?>
<items   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="items.xsd">
    <enumtypes>
        <enumtype code="StadiumType" autocreate="true" generate="true" dynamic="false">
            <value code="openair"/>
            <value code="enclosed"/>
        </enumtype>
        <enumtype code="StadiumAccess" autocreate="true" generate="true" dynamic="true">
            <value code="road"/>
            <value code="rail"/>
            <value code="plane"/>
        </enumtype>
    </enumtypes>
    <relations>
        <relation code="StadiumMatchRelation"
                localized="false" generate="true" autocreate="true">
            <sourceElement type="Stadium" qualifier="stadium" cardinality="one"/>
            <targetElement type="Match" qualifier="matches" cardinality="many"/>
        </relation>
    </relations>

    <itemtypes>
        <itemtype code="Stadium" generate="true" autocreate="true">
            <deployment table="CuppyTrailStadium" typecode="10123" />
            <attributes>
                <attribute qualifier="code" type="java.lang.String" >
                    <persistence type="property"/>
                    <modifiers optional="false" unique="true"/>
                </attribute>
                <attribute qualifier="capacity" type="java.lang.Integer">
                    <description>Capacity</description>
                    <persistence type="property" />
                </attribute>
                <attribute type="StadiumType" qualifier="StadiumType">
                <persistence type="property"/>
                <defaultvalue>em().getEnumerationValue("StadiumType","openair")</defaultvalue>
                </attribute>
            </attributes>
        </itemtype>
    </itemtypes>
</items>

在 cmd 中使用“ant clean all”构建并刷新我的项目列表后。 我无法在 platform/bootstrap...

下找到自动生成的模型 类

有什么建议吗?

ps:正在编写 wiki.hybris.com 教程

构建您的项目并在 ide 内刷新它。如果 ant 构建没有错误,它应该已经生成了模型 类.