次のエントリを含む xsd があります。
<xsd:simpleType name="Percentage">
<xsd:restriction base="xsd:decimal">
<xsd:minInclusive value="0"/>
<xsd:maxInclusive value="1"/>
</xsd:restriction>
</xsd:simpleType>
しかし、この xsd で xjc を実行すると、クラス Percentage が作成されません。どうすればそれを行うことができ、どのように機能しますか。CXF を使用して Java でコード ファーストの Web サービスを作成しています。よろしく