1 package sharin.doc.builder.xhtml1; 2 3 public class BdoElem extends GenericCoreElem<BdoElem> { 4 5 public BdoElem(Object... nodes) { 6 super("bdo", nodes); 7 } 8 9 public BdoElem dir(Object value) { 10 return attr("dir", value); 11 } 12 13 public BdoElem dirLtr() { 14 return dir("ltr"); 15 } 16 17 public BdoElem dirRtl() { 18 return dir("rtl"); 19 } 20 21 public BdoElem lang(Object value) { 22 return attr("lang", value); 23 } 24 25 public BdoElem onclick(Object value) { 26 return attr("onclick", value); 27 } 28 29 public BdoElem ondblclick(Object value) { 30 return attr("ondblclick", value); 31 } 32 33 public BdoElem onkeydown(Object value) { 34 return attr("onkeydown", value); 35 } 36 37 public BdoElem onkeypress(Object value) { 38 return attr("onkeypress", value); 39 } 40 41 public BdoElem onkeyup(Object value) { 42 return attr("onkeyup", value); 43 } 44 45 public BdoElem onmousedown(Object value) { 46 return attr("onmousedown", value); 47 } 48 49 public BdoElem onmousemove(Object value) { 50 return attr("onmousemove", value); 51 } 52 53 public BdoElem onmouseout(Object value) { 54 return attr("onmouseout", value); 55 } 56 57 public BdoElem onmouseover(Object value) { 58 return attr("onmouseover", value); 59 } 60 61 public BdoElem onmouseup(Object value) { 62 return attr("onmouseup", value); 63 } 64 65 public BdoElem xmllang(Object value) { 66 return attr("xmllang", value); 67 } 68 }