Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 24 25 28 29 package org.enhydra.xml.xhtml.dom; 30 31 import org.w3c.dom.html.HTMLMapElement; 32 33 public interface XHTMLMapElement extends XHTMLElement , HTMLMapElement { 34 35 public void setOnMouseMove(String newValue); 36 public String getOnMouseMove(); 37 38 39 public void setOnMouseOut(String newValue); 40 public String getOnMouseOut(); 41 42 43 public void setOnKeyPress(String newValue); 44 public String getOnKeyPress(); 45 46 47 public void setOnMouseOver(String newValue); 48 public String getOnMouseOver(); 49 50 51 public void setOnDblClick(String newValue); 52 public String getOnDblClick(); 53 54 55 public void setOnKeyDown(String newValue); 56 public String getOnKeyDown(); 57 58 59 public void setOnMouseUp(String newValue); 60 public String getOnMouseUp(); 61 62 63 public void setOnKeyUp(String newValue); 64 public String getOnKeyUp(); 65 66 67 public void setStyle(String newValue); 68 public String getStyle(); 69 70 71 public void setXmlLang(String newValue); 72 public String getXmlLang(); 73 74 75 public void setOnClick(String newValue); 76 public String getOnClick(); 77 78 79 public void setOnMouseDown(String newValue); 80 public String getOnMouseDown(); 81 82 83 } 84
| Popular Tags
|