public void setTHead(HTMLTableSectionElement tHead) { HTMLTableSectionElement ref = getTHead(); if (ref == null) { appendChild(tHead); } else { replaceChild(tHead, ref); } }
public void setTFoot(HTMLTableSectionElement tFoot) { HTMLTableSectionElement ref = getTFoot(); if (ref == null) { appendChild(tFoot); } else { replaceChild(tFoot, ref); } }
public HTMLElement createTHead() { HTMLTableSectionElement ref = getTHead(); if (ref == null) { return (HTMLElement) getOwnerDocument().createElement("thead"); } else { return ref; } }
public void deleteTHead() { HTMLTableSectionElement ref = getTHead(); if (ref != null) { removeChild(ref); } }
public HTMLElement createTFoot() { HTMLTableSectionElement ref = getTFoot(); if (ref == null) { return (HTMLElement) getOwnerDocument().createElement("tfoot"); } else { return ref; } }
public void deleteTFoot() { HTMLTableSectionElement ref = getTFoot(); if (ref != null) { removeChild(ref); } }
public HTMLTableSectionElement getTHead() { return (HTMLTableSectionElement) getChildElement("thead"); }
public HTMLTableSectionElement getTFoot() { return (HTMLTableSectionElement) getChildElement("tfoot"); }