This page was generated using Webiyo. See its source code and unit tests.
|
org/webiyo/xml/DocType.javapackage org.webiyo.xml; public class DocType { private final TagType rootTag; private final String publicId; private final String url; public DocType(TagType rootTag, String publicId, String url) { this.rootTag = rootTag; this.publicId = publicId; this.url = url; } public TagType getRootTag() { return rootTag; } public String getPublicId() { return publicId; } public String getUrl() { return url; } } |