1 package sharin.doc.builder.xhtml1; 2 3 public class InsElem extends GenericCommonElem<InsElem> { 4 5 public InsElem(Object... nodes) { 6 super("ins", nodes); 7 } 8 9 public InsElem cite(Object value) { 10 return attr("cite", value); 11 } 12 13 public InsElem datetime(Object value) { 14 return attr("datetime", value); 15 } 16 }