1 package sharin.doc.builder.xhtml1; 2 3 public class FontElem extends GenericCoreElem<FontElem> { 4 5 public FontElem(Object... nodes) { 6 super("font", nodes); 7 } 8 9 public FontElem color(Object value) { 10 return attr("color", value); 11 } 12 13 public FontElem dir(Object value) { 14 return attr("dir", value); 15 } 16 17 public FontElem face(Object value) { 18 return attr("face", value); 19 } 20 21 public FontElem lang(Object value) { 22 return attr("lang", value); 23 } 24 25 public FontElem size(Object value) { 26 return attr("size", value); 27 } 28 29 public FontElem xmllang(Object value) { 30 return attr("xmllang", value); 31 } 32 }