1 12 13 package org.w3c.dom.html; 14 15 import org.w3c.dom.DOMException ; 16 17 27 public interface HTMLTableElement extends HTMLElement { 28 31 public HTMLTableCaptionElement getCaption(); 32 public void setCaption(HTMLTableCaptionElement caption); 33 34 38 public HTMLTableSectionElement getTHead(); 39 public void setTHead(HTMLTableSectionElement tHead); 40 41 45 public HTMLTableSectionElement getTFoot(); 46 public void setTFoot(HTMLTableSectionElement tFoot); 47 48 53 public HTMLCollection getRows(); 54 55 58 public HTMLCollection getTBodies(); 59 60 65 public String getAlign(); 66 public void setAlign(String align); 67 68 72 public String getBgColor(); 73 public void setBgColor(String bgColor); 74 75 79 public String getBorder(); 80 public void setBorder(String border); 81 82 86 public String getCellPadding(); 87 public void setCellPadding(String cellPadding); 88 89 93 public String getCellSpacing(); 94 public void setCellSpacing(String cellSpacing); 95 96 100 public String getFrame(); 101 public void setFrame(String frame); 102 103 107 public String getRules(); 108 public void setRules(String rules); 109 110 114 public String getSummary(); 115 public void setSummary(String summary); 116 117 121 public String getWidth(); 122 public void setWidth(String width); 123 124 128 public HTMLElement createTHead(); 129 130 133 public void deleteTHead(); 134 135 139 public HTMLElement createTFoot(); 140 141 144 public void deleteTFoot(); 145 146 150 public HTMLElement createCaption(); 151 152 155 public void deleteCaption(); 156 157 173 public HTMLElement insertRow(int index) 174 throws DOMException ; 175 176 185 public void deleteRow(int index) 186 throws DOMException ; 187 188 } 189 190 | Popular Tags |