📅  最后修改于: 2020-12-26 13:46:32             🧑  作者: Mango
此任务用于为Ant构建文件生成DTD。它包含有关Ant当前已知的所有任务的信息。
我们总是可以使用
Attribute | Description | Required |
---|---|---|
output | A output file to write the DTD. | Yes |
我们可以通过指定输出文件,使用
如果要指定DTD以外的结构,则首先需要实现接口AntStructure。
package org.example;
import org.apache.tools.ant.taskdefs.AntStructure;
public class MyPrinter implements AntStructure.StructurePrinter {
...
}
然后我们可以通过typedef元素使用它。