私はこのdtdを持っています:http : //fast-code.sourceforge.net/template.dtd しかし、XMLに含めると、次の警告が表示されます。ドキュメントに対して文法制約(DTDまたはXMLスキーマ)が検出されません。xmlは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE templates PUBLIC "//UNKNOWN/" "http://fast-code.sourceforge.net/template.dtd">
<templates>
<template type="INSTANCE_OF_CLASS">
<description>Used to Create instance of class</description>
<variation>asasa</variation>
<variation-field>asasa</variation-field>
<class-pattern>asasa</class-pattern>
<getter-setter>setter</getter-setter>
<allowed-file-extensions>java</allowed-file-extensions>
<number-required-classes>1</number-required-classes>
<allow-multiple-variation>false</allow-multiple-variation>
<template-body>
<![CDATA[
// Creating new instance of ${class_name}
final ${class_name} ${instance} = new ${class_name}();
#foreach ($field in ${fields})
${instance}.${field.setter}(${field.value});
#end
]]>
</template-body>
</template>
</templates>
編集:私はxmlを変更しました、私は今このエラーを受けています:
要素タイプ「テンプレート」のコンテンツは、「(説明、バリエーション?、バリエーションフィールド?、複数バリエーション?、クラスパターン?、ゲッターセッター?、許可ファイル拡張子?、番号必須? classes?、template-body) "。