elemental2.dom.HTMLTableElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jacline-elemental2-dom Show documentation
Show all versions of jacline-elemental2-dom Show documentation
Thin Java abstractions for the standard built-in objects for
Javascript.
The newest version!
package elemental2.dom;
import elemental2.dom.HTMLCollection;
import elemental2.dom.HTMLElement;
import elemental2.dom.HTMLTableRowElement;
import java.lang.String;
import elemental2.dom.HTMLTableCaptionElement;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
import elemental2.dom.HTMLTableSectionElement;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public class HTMLTableElement extends HTMLElement{
public String align;
public String bgColor;
public String border;
public HTMLTableCaptionElement caption;
public String cellPadding;
public String cellSpacing;
public String frame;
public HTMLCollection rows;
public String rules;
public String summary;
public HTMLCollection tBodies;
public HTMLTableSectionElement tFoot;
public HTMLTableSectionElement tHead;
public String width;
public native HTMLElement createCaption();
public native HTMLElement createTFoot();
public native HTMLElement createTHead();
public native void deleteCaption();
public native HTMLElement deleteRow(int index);
public native void deleteTFoot();
public native void deleteTHead();
public native HTMLElement insertRow();
public native HTMLElement insertRow(int index);
}