1 21 32 33 package org.w3c.dom.html2; 34 35 import org.w3c.dom.DOMException ; 36 37 46 public interface HTMLTableElement extends HTMLElement { 47 51 public HTMLTableCaptionElement getCaption(); 52 58 public void setCaption(HTMLTableCaptionElement caption) 59 throws DOMException ; 60 61 66 public HTMLTableSectionElement getTHead(); 67 74 public void setTHead(HTMLTableSectionElement tHead) 75 throws DOMException ; 76 77 82 public HTMLTableSectionElement getTFoot(); 83 90 public void setTFoot(HTMLTableSectionElement tFoot) 91 throws DOMException ; 92 93 98 public HTMLCollection getRows(); 99 100 103 public HTMLCollection getTBodies(); 104 105 110 public String getAlign(); 111 116 public void setAlign(String align); 117 118 122 public String getBgColor(); 123 127 public void setBgColor(String bgColor); 128 129 133 public String getBorder(); 134 138 public void setBorder(String border); 139 140 144 public String getCellPadding(); 145 149 public void setCellPadding(String cellPadding); 150 151 155 public String getCellSpacing(); 156 160 public void setCellSpacing(String cellSpacing); 161 162 166 public String getFrame(); 167 171 public void setFrame(String frame); 172 173 177 public String getRules(); 178 182 public void setRules(String rules); 183 184 188 public String getSummary(); 189 193 public void setSummary(String summary); 194 195 199 public String getWidth(); 200 204 public void setWidth(String width); 205 206 210 public HTMLElement createTHead(); 211 212 215 public void deleteTHead(); 216 217 221 public HTMLElement createTFoot(); 222 223 226 public void deleteTFoot(); 227 228 232 public HTMLElement createCaption(); 233 234 237 public void deleteCaption(); 238 239 256 public HTMLElement insertRow(int index) 257 throws DOMException ; 258 259 271 public void deleteRow(int index) 272 throws DOMException ; 273 274 } 275 | Popular Tags |