1 21 32 33 package org.w3c.dom.html2; 34 35 import org.w3c.dom.DOMException ; 36 37 42 public interface HTMLTableSectionElement extends HTMLElement { 43 47 public String getAlign(); 48 52 public void setAlign(String align); 53 54 58 public String getCh(); 59 63 public void setCh(String ch); 64 65 69 public String getChOff(); 70 74 public void setChOff(String chOff); 75 76 80 public String getVAlign(); 81 85 public void setVAlign(String vAlign); 86 87 90 public HTMLCollection getRows(); 91 92 106 public HTMLElement insertRow(int index) 107 throws DOMException ; 108 109 120 public void deleteRow(int index) 121 throws DOMException ; 122 123 } 124 | Popular Tags |