1 21 32 33 package org.w3c.dom.html2; 34 35 40 public interface HTMLAreaElement extends HTMLElement { 41 45 public String getAccessKey(); 46 50 public void setAccessKey(String accessKey); 51 52 56 public String getAlt(); 57 61 public void setAlt(String alt); 62 63 68 public String getCoords(); 69 74 public void setCoords(String coords); 75 76 80 public String getHref(); 81 85 public void setHref(String href); 86 87 91 public boolean getNoHref(); 92 96 public void setNoHref(boolean noHref); 97 98 102 public String getShape(); 103 107 public void setShape(String shape); 108 109 113 public int getTabIndex(); 114 118 public void setTabIndex(int tabIndex); 119 120 124 public String getTarget(); 125 129 public void setTarget(String target); 130 131 } 132 | Popular Tags |