1 package sharin.doc.builder.xhtml1; 2 3 public class HtmlElem extends GenericI18nElem<HtmlElem> { 4 5 public HtmlElem(Object... nodes) { 6 super("html", nodes); 7 } 8 9 public HtmlElem xmlns(Object value) { 10 return attr("xmlns", value); 11 } 12 }