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