public HTMLCollection getAreas() { DomHTMLCollection ret = new DomHTMLCollection((DomHTMLDocument) getOwnerDocument(), this); ret.addNodeName("area"); ret.evaluate(); return ret; }
public HTMLCollection getCells() { DomHTMLCollection ret = new DomHTMLCollection((DomHTMLDocument) getOwnerDocument(), this); ret.addNodeName("th"); ret.addNodeName("td"); ret.evaluate(); return ret; }
public HTMLCollection getElements() { DomHTMLCollection ret = new DomHTMLCollection((DomHTMLDocument) getOwnerDocument(), this); ret.addNodeName("input"); ret.addNodeName("button"); ret.addNodeName("select"); ret.addNodeName("textarea"); ret.addNodeName("isindex"); ret.addNodeName("label"); ret.addNodeName("option"); ret.evaluate(); return ret; }
public HTMLCollection getImages() { DomHTMLCollection ret = new DomHTMLCollection(this, this); ret.addNodeName("img"); ret.evaluate(); return ret; }
public HTMLCollection getApplets() { DomHTMLCollection ret = new DomHTMLCollection(this, this); ret.addNodeName("embed"); ret.addNodeName("object"); ret.addNodeName("applet"); ret.evaluate(); return ret; }
public HTMLCollection getLinks() { DomHTMLCollection ret = new DomHTMLCollection(this, this); ret.addNodeName("area"); ret.addNodeName("a"); ret.evaluate(); return ret; }
public HTMLCollection getForms() { DomHTMLCollection ret = new DomHTMLCollection(this, this); ret.addNodeName("form"); ret.evaluate(); return ret; }
public HTMLCollection getAnchors() { DomHTMLCollection ret = new DomHTMLCollection(this, this); ret.addNodeName("a"); ret.addAttributeName("name"); ret.evaluate(); return ret; }
public HTMLCollection getRows() { DomHTMLCollection ret = new DomHTMLCollection((DomHTMLDocument) getOwnerDocument(), this); ret.addNodeName("tr"); ret.evaluate(); return ret; }
public HTMLCollection getTBodies() { DomHTMLCollection ret = new DomHTMLCollection((DomHTMLDocument) getOwnerDocument(), this); ret.addNodeName("tbody"); ret.evaluate(); return ret; }