Uses of Interface
com.jniwrapper.win32.ie.dom.HTMLElement

Packages that use HTMLElement
com.jniwrapper.win32.ie Contains the basic classes and interfaces. 
com.jniwrapper.win32.ie.dom Contains classes for accessing browser Document Object Model (DOM). 
com.jniwrapper.win32.ie.scripting Contains classes that can be used in automatic testings. 
 

Uses of HTMLElement in com.jniwrapper.win32.ie
 

Constructors in com.jniwrapper.win32.ie with parameters of type HTMLElement
MouseKeyboardSupport(java.awt.Component component, HTMLElement documentElement)
           
 

Uses of HTMLElement in com.jniwrapper.win32.ie.dom
 

Subinterfaces of HTMLElement in com.jniwrapper.win32.ie.dom
 interface OptionElement
          This interface represents option of select element.
 interface SelectElement
          This interface represents select element.
 interface Table
          This interface represents HTML table element.
 interface TableCell
          This object represents table cell element.
 interface TableRow
          This interface represents the table row element.
 

Classes in com.jniwrapper.win32.ie.dom that implement HTMLElement
 class TableCellImpl
          An implementation of TableCell interface that represents HTML table cell element.
 class TableImpl
          An implementation of Table interface that represents HTML table element.
 class TableRowImpl
          An implementation of TableRow interface that represents HTML table row element.
 

Methods in com.jniwrapper.win32.ie.dom that return HTMLElement
 HTMLElement DomFactory.createElement(com.jniwrapper.win32.automation.IDispatch element)
          Creates object that represents tag, comment or text in HTML document.
 HTMLElement DomFactory.createFrame(com.jniwrapper.win32.automation.IDispatch element)
          Creates object that represents HTML frame.
 HTMLElement HTMLDocument.getActiveElement()
          Returns document active element.
 HTMLElement HTMLDocument.getElementFromPoint(int x, int y)
          Returns the element for the specified x coordinate and the specified y coordinate.
 HTMLElement HTMLDocument.getHead()
          Returns head element.
 HTMLElement HTMLElement.getOffsetParent()
          Returns element used as origin of coordinates for element location.
 

Uses of HTMLElement in com.jniwrapper.win32.ie.scripting
 

Methods in com.jniwrapper.win32.ie.scripting that return HTMLElement
 HTMLElement Robot.findButtonByText(java.lang.String text)
          Searches a button by spcified text.
 HTMLElement Robot.findElement(java.lang.String elementID)
          Returns an element with a specified ID.
 HTMLElement Robot.findElementByText(java.lang.String text)
          Searches an element by spcified text.
 HTMLElement Robot.findInputByText(java.lang.String text)
          Searches an input by spcified text.
 HTMLElement Robot.findLinkByText(java.lang.String text)
          Searches a link by spcified text.
 HTMLElement Robot.findLinkByText(java.lang.String text, java.util.Comparator comparator)
          Searches a link by spcified text.
 HTMLElement Robot.getActiveElement()
          Returs current element.
 

Methods in com.jniwrapper.win32.ie.scripting with parameters of type HTMLElement
 void Robot.click(HTMLElement elemnt)
          Invokes click() method in the specified element.