Java Doc for HtmlInput.java in  » Testing » htmlunit » com » gargoylesoftware » htmlunit » html » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » htmlunit » com.gargoylesoftware.htmlunit.html 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.gargoylesoftware.htmlunit.html.DomNode
      com.gargoylesoftware.htmlunit.html.DomNamespaceNode
         com.gargoylesoftware.htmlunit.html.DomElement
            com.gargoylesoftware.htmlunit.html.HtmlElement
               com.gargoylesoftware.htmlunit.html.StyledElement
                  com.gargoylesoftware.htmlunit.html.ClickableElement
                     com.gargoylesoftware.htmlunit.html.FocusableElement
                        com.gargoylesoftware.htmlunit.html.HtmlInput

All known Subclasses:   com.gargoylesoftware.htmlunit.html.HtmlResetInput,  com.gargoylesoftware.htmlunit.html.HtmlHiddenInput,  com.gargoylesoftware.htmlunit.html.HtmlButtonInput,  com.gargoylesoftware.htmlunit.html.HtmlSubmitInput,  com.gargoylesoftware.htmlunit.html.HtmlTextInput,  com.gargoylesoftware.htmlunit.html.HtmlCheckBoxInput,  com.gargoylesoftware.htmlunit.html.HtmlImageInput,  com.gargoylesoftware.htmlunit.html.HtmlRadioButtonInput,  com.gargoylesoftware.htmlunit.html.HtmlPasswordInput,  com.gargoylesoftware.htmlunit.html.HtmlFileInput,
HtmlInput
abstract public class HtmlInput extends FocusableElement implements DisabledElement,SubmittableElement(Code)
Wrapper for the html element "input"
version:
   $Revision: 2132 $
author:
   Mike Bowler
author:
   David K. Taylor
author:
   Christian Sell
author:
   David D. Kilzer
author:
   Marc Guillemot
author:
   Daniel Gredler
author:
   Ahmed Ashour


Field Summary
final public static  StringTAG_NAME
    

Constructor Summary
public  HtmlInput(HtmlPage page, Map attributes)
    
public  HtmlInput(String namespaceURI, String qualifiedName, HtmlPage page, Map attributes)
    

Method Summary
public  StringasText()
    
public  Pageclick(int x, int y)
     Simulate clicking this input with a pointing device.
static  PageexecuteOnChangeHandlerIfAppropriate(HtmlElement htmlElement)
     Executes the onchange script code for this element if this is appropriate. This means that the element must have an onchange script, script must be enabled and the change in the element must not have been triggered by a script.
Parameters:
  htmlElement - The element that contains the onchange attribute.
final public  StringgetAcceptAttribute()
     Return the value of the attribute "accept".
final public  StringgetAccessKeyAttribute()
     Return the value of the attribute "accesskey".
final public  StringgetAlignAttribute()
     Return the value of the attribute "align".
final public  StringgetAltAttribute()
     Return the value of the attribute "alt".
final public  StringgetCheckedAttribute()
     Return the value of the attribute "checked".
public  StringgetDefaultValue()
    
final public  StringgetDisabledAttribute()
     Return the value of the attribute "disabled".
final public  StringgetMaxLengthAttribute()
     Return the value of the attribute "maxlength".
final public  StringgetNameAttribute()
     Return the value of the attribute "name".
final public  StringgetOnBlurAttribute()
     Return the value of the attribute "onblur".
final public  StringgetOnChangeAttribute()
     Return the value of the attribute "onchange".
final public  StringgetOnFocusAttribute()
     Return the value of the attribute "onfocus".
final public  StringgetOnSelectAttribute()
     Return the value of the attribute "onselect".
final public  StringgetReadOnlyAttribute()
     Return the value of the attribute "readonly".
final public  StringgetSizeAttribute()
     Return the value of the attribute "size".
final public  StringgetSrcAttribute()
     Return the value of the attribute "src".
public  KeyValuePair[]getSubmitKeyValuePairs()
     Return an array of KeyValuePairs that are the values that will be sent back to the server whenever the current form is submitted.

THIS METHOD IS INTENDED FOR THE USE OF THE FRAMEWORK ONLY AND SHOULD NOT BE USED BY CONSUMERS OF HTMLUNIT.

final public  StringgetTabIndexAttribute()
     Return the value of the attribute "tabindex".
final public  StringgetTypeAttribute()
     Return the value of the attribute "type".
final public  StringgetUseMapAttribute()
     Return the value of the attribute "usemap".
final public  StringgetValueAttribute()
    

Return the value of the attribute "value".

public  booleanisChecked()
    
public  booleanisDefaultChecked()
     The default implementation returns false; only checkboxes and radio buttons really care what the default checked value is.
final public  booleanisDisabled()
     Return true if the disabled attribute is set for this element.
public  voidreset()
    
public  PagesetChecked(boolean isChecked)
    
public  voidsetDefaultChecked(boolean defaultChecked)
     The default implementation is empty; only checkboxes and radio buttons really care what the default checked value is.
public  voidsetDefaultValue(String defaultValue)
     Also sets the value attribute when emulating Netscape browsers.
protected  voidsetDefaultValue(String defaultValue, boolean modifyValue)
     Sets the default value, optionally also modifying the current value.
public  PagesetValueAttribute(String newValue)
     Set the content of the "value" attribute, executing onchange handlers if appropriate.

Field Detail
TAG_NAME
final public static String TAG_NAME(Code)
the HTML tag represented by this element




Constructor Detail
HtmlInput
public HtmlInput(HtmlPage page, Map attributes)(Code)
Create an instance
Parameters:
  page - The page that contains this element
Parameters:
  attributes - the initial attributes



HtmlInput
public HtmlInput(String namespaceURI, String qualifiedName, HtmlPage page, Map attributes)(Code)
Create an instance
Parameters:
  namespaceURI - the URI that identifies an XML namespace.
Parameters:
  qualifiedName - The qualified name of the element type to instantiate
Parameters:
  page - The page that contains this element
Parameters:
  attributes - the initial attributes




Method Detail
asText
public String asText()(Code)



click
public Page click(int x, int y) throws IOException, ElementNotFoundException(Code)
Simulate clicking this input with a pointing device. The x and y coordinates of the pointing device will be sent to the server.
Parameters:
  x - The x coordinate of the pointing device at the time of clicking
Parameters:
  y - The y coordinate of the pointing device at the time of clicking The page that is loaded after the click has taken place.
exception:
  IOException - If an io error occurs
exception:
  ElementNotFoundException - If a particular xml element could not be found in the dom model



executeOnChangeHandlerIfAppropriate
static Page executeOnChangeHandlerIfAppropriate(HtmlElement htmlElement)(Code)
Executes the onchange script code for this element if this is appropriate. This means that the element must have an onchange script, script must be enabled and the change in the element must not have been triggered by a script.
Parameters:
  htmlElement - The element that contains the onchange attribute. The page that occupies this window after this method completes. Itmay be this or it may be a freshly loaded page.



getAcceptAttribute
final public String getAcceptAttribute()(Code)
Return the value of the attribute "accept". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "accept"or an empty string if that attribute isn't defined.



getAccessKeyAttribute
final public String getAccessKeyAttribute()(Code)
Return the value of the attribute "accesskey". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "accesskey"or an empty string if that attribute isn't defined.



getAlignAttribute
final public String getAlignAttribute()(Code)
Return the value of the attribute "align". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "align"or an empty string if that attribute isn't defined.



getAltAttribute
final public String getAltAttribute()(Code)
Return the value of the attribute "alt". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "alt"or an empty string if that attribute isn't defined.



getCheckedAttribute
final public String getCheckedAttribute()(Code)
Return the value of the attribute "checked". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "checked"or an empty string if that attribute isn't defined.



getDefaultValue
public String getDefaultValue()(Code)

See Also:   SubmittableElement.getDefaultValue



getDisabledAttribute
final public String getDisabledAttribute()(Code)
Return the value of the attribute "disabled". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "disabled"or an empty string if that attribute isn't defined.



getMaxLengthAttribute
final public String getMaxLengthAttribute()(Code)
Return the value of the attribute "maxlength". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "maxlength"or an empty string if that attribute isn't defined.



getNameAttribute
final public String getNameAttribute()(Code)
Return the value of the attribute "name". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "name"or an empty string if that attribute isn't defined.



getOnBlurAttribute
final public String getOnBlurAttribute()(Code)
Return the value of the attribute "onblur". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "onblur"or an empty string if that attribute isn't defined.



getOnChangeAttribute
final public String getOnChangeAttribute()(Code)
Return the value of the attribute "onchange". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "onchange"or an empty string if that attribute isn't defined.



getOnFocusAttribute
final public String getOnFocusAttribute()(Code)
Return the value of the attribute "onfocus". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "onfocus"or an empty string if that attribute isn't defined.



getOnSelectAttribute
final public String getOnSelectAttribute()(Code)
Return the value of the attribute "onselect". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "onselect"or an empty string if that attribute isn't defined.



getReadOnlyAttribute
final public String getReadOnlyAttribute()(Code)
Return the value of the attribute "readonly". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "readonly"or an empty string if that attribute isn't defined.



getSizeAttribute
final public String getSizeAttribute()(Code)
Return the value of the attribute "size". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "size"or an empty string if that attribute isn't defined.



getSrcAttribute
final public String getSrcAttribute()(Code)
Return the value of the attribute "src". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "src"or an empty string if that attribute isn't defined.



getSubmitKeyValuePairs
public KeyValuePair[] getSubmitKeyValuePairs()(Code)
Return an array of KeyValuePairs that are the values that will be sent back to the server whenever the current form is submitted.

THIS METHOD IS INTENDED FOR THE USE OF THE FRAMEWORK ONLY AND SHOULD NOT BE USED BY CONSUMERS OF HTMLUNIT. USE AT YOUR OWN RISK. See above




getTabIndexAttribute
final public String getTabIndexAttribute()(Code)
Return the value of the attribute "tabindex". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "tabindex"or an empty string if that attribute isn't defined.



getTypeAttribute
final public String getTypeAttribute()(Code)
Return the value of the attribute "type". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "type"or an empty string if that attribute isn't defined.



getUseMapAttribute
final public String getUseMapAttribute()(Code)
Return the value of the attribute "usemap". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "usemap"or an empty string if that attribute isn't defined.



getValueAttribute
final public String getValueAttribute()(Code)

Return the value of the attribute "value". Refer to the HTML 4.01 documentation for details on the use of this attribute.

The value of the attribute "value" or an empty string if thatattribute isn't defined



isChecked
public boolean isChecked()(Code)
Return true if this element is currently selected See above



isDefaultChecked
public boolean isDefaultChecked()(Code)
The default implementation returns false; only checkboxes and radio buttons really care what the default checked value is.
See Also:   SubmittableElement.isDefaultChecked
See Also:   HtmlRadioButtonInput.isDefaultChecked
See Also:   HtmlCheckBoxInput.isDefaultChecked



isDisabled
final public boolean isDisabled()(Code)
Return true if the disabled attribute is set for this element. Return true if this is disabled.



reset
public void reset()(Code)

See Also:   SubmittableElement.reset



setChecked
public Page setChecked(boolean isChecked)(Code)
Set the "checked" attribute
Parameters:
  isChecked - true if this element is to be selected The page that occupies this window after setting checked status.It may be the same window or it may be a freshly loaded one.



setDefaultChecked
public void setDefaultChecked(boolean defaultChecked)(Code)
The default implementation is empty; only checkboxes and radio buttons really care what the default checked value is.
See Also:   SubmittableElement.setDefaultChecked(boolean)
See Also:   HtmlRadioButtonInput.setDefaultChecked(boolean)
See Also:   HtmlCheckBoxInput.setDefaultChecked(boolean)



setDefaultValue
public void setDefaultValue(String defaultValue)(Code)
Also sets the value attribute when emulating Netscape browsers.
See Also:   SubmittableElement.setDefaultValue(String)
See Also:   HtmlFileInput.setDefaultValue(String)



setDefaultValue
protected void setDefaultValue(String defaultValue, boolean modifyValue)(Code)
Sets the default value, optionally also modifying the current value.
Parameters:
  defaultValue - The new default value.
Parameters:
  modifyValue - Whether or not to set the current value to the default value.



setValueAttribute
public Page setValueAttribute(String newValue)(Code)
Set the content of the "value" attribute, executing onchange handlers if appropriate.
Parameters:
  newValue - The new content the page that occupies this window after this value is set.It may be the same window or it may be a freshly loaded one.




Methods inherited from com.gargoylesoftware.htmlunit.html.ClickableElement
public Page click() throws IOException(Code)(Java Doc)
public Page click(boolean shiftKey, boolean ctrlKey, boolean altKey) throws IOException(Code)(Java Doc)
public Page click(Event event) throws IOException(Code)(Java Doc)
public Page dblClick() throws IOException(Code)(Java Doc)
public Page dblClick(boolean shiftKey, boolean ctrlKey, boolean altKey) throws IOException(Code)(Java Doc)
protected Page doClickAction(Page defaultPage) throws IOException(Code)(Java Doc)
final public String getLangAttribute()(Code)(Java Doc)
final public String getOnClickAttribute()(Code)(Java Doc)
final public String getOnDblClickAttribute()(Code)(Java Doc)
final public String getOnKeyDownAttribute()(Code)(Java Doc)
final public String getOnKeyPressAttribute()(Code)(Java Doc)
final public String getOnKeyUpAttribute()(Code)(Java Doc)
final public String getOnMouseDownAttribute()(Code)(Java Doc)
final public String getOnMouseMoveAttribute()(Code)(Java Doc)
final public String getOnMouseOutAttribute()(Code)(Java Doc)
final public String getOnMouseOverAttribute()(Code)(Java Doc)
final public String getOnMouseUpAttribute()(Code)(Java Doc)
final public String getTextDirectionAttribute()(Code)(Java Doc)
final public String getXmlLangAttribute()(Code)(Java Doc)
protected boolean isStateUpdateFirst()(Code)(Java Doc)

Methods inherited from com.gargoylesoftware.htmlunit.html.StyledElement
final public String getClassAttribute()(Code)(Java Doc)
final public String getIdAttribute()(Code)(Java Doc)
final public String getStyleAttribute()(Code)(Java Doc)
final public String getTitleAttribute()(Code)(Java Doc)
protected boolean isRenderedVisible()(Code)(Java Doc)

Fields inherited from com.gargoylesoftware.htmlunit.html.HtmlElement
final public static String ATTRIBUTE_NOT_DEFINED(Code)(Java Doc)
final public static String ATTRIBUTE_VALUE_EMPTY(Code)(Java Doc)
final public static Short TAB_INDEX_OUT_OF_BOUNDS(Code)(Java Doc)

Methods inherited from com.gargoylesoftware.htmlunit.html.HtmlElement
static HtmlAttr addAttributeToMap(HtmlPage page, Map attributeMap, String namespaceURI, String qualifiedName, String value)(Code)(Java Doc)
public void addHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)(Code)(Java Doc)
final public HtmlElement appendChildIfNoneExists(String tagName)(Code)(Java Doc)
final protected void assertNotEmpty(String description, String string) throws IllegalArgumentException(Code)(Java Doc)
public void blur()(Code)(Java Doc)
public DomNode cloneDomNode(boolean deep)(Code)(Java Doc)
public DomNode cloneNode(boolean deep)(Code)(Java Doc)
static Map createAttributeMap(int attributeCount)(Code)(Java Doc)
public ScriptResult fireEvent(String eventType)(Code)(Java Doc)
public ScriptResult fireEvent(Event event)(Code)(Java Doc)
protected void fireHtmlAttributeAdded(HtmlAttributeChangeEvent event)(Code)(Java Doc)
protected void fireHtmlAttributeRemoved(HtmlAttributeChangeEvent event)(Code)(Java Doc)
protected void fireHtmlAttributeReplaced(HtmlAttributeChangeEvent event)(Code)(Java Doc)
public void focus()(Code)(Java Doc)
final public String getAttribute(String attributeName)(Code)(Java Doc)
public Iterator getAttributeEntriesIterator()(Code)(Java Doc)
final public String getAttributeNS(String namespaceURI, String localName)(Code)(Java Doc)
final public String getAttributeValue(String attributeName)(Code)(Java Doc)
final public Iterator getChildElementsIterator()(Code)(Java Doc)
public HtmlElement getEnclosingElement(String tagName)(Code)(Java Doc)
public HtmlForm getEnclosingForm()(Code)(Java Doc)
public HtmlForm getEnclosingFormOrDie() throws IllegalStateException(Code)(Java Doc)
final public Function getEventHandler(String eventName)(Code)(Java Doc)
public HtmlElement getHtmlElementById(String id) throws ElementNotFoundException(Code)(Java Doc)
final public List getHtmlElementsByAttribute(String elementName, String attributeName, String attributeValue)(Code)(Java Doc)
final public List getHtmlElementsByTagName(String tagName)(Code)(Java Doc)
final public List getHtmlElementsByTagNames(List acceptableTagNames)(Code)(Java Doc)
final public String getId()(Code)(Java Doc)
public String getNodeName()(Code)(Java Doc)
public short getNodeType()(Code)(Java Doc)
final public HtmlElement getOneHtmlElementByAttribute(String elementName, String attributeName, String attributeValue) throws ElementNotFoundException(Code)(Java Doc)
public Short getTabIndex()(Code)(Java Doc)
public String getTagName()(Code)(Java Doc)
final public boolean hasAttribute(String attributeName)(Code)(Java Doc)
final public boolean hasAttributeNS(String namespaceURI, String localName)(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
public boolean hasHtmlElementWithId(String id)(Code)(Java Doc)
public boolean isAttributeDefined(String attributeName)(Code)(Java Doc)
protected boolean isEmptyXmlTagExpanded()(Code)(Java Doc)
protected boolean isSubmittableByEnter()(Code)(Java Doc)
public void keyDown(int keyCode)(Code)(Java Doc)
public void keyDown(int keyCode, boolean shiftKey, boolean ctrlKey, boolean altKey)(Code)(Java Doc)
public Page mouseDown()(Code)(Java Doc)
public Page mouseDown(boolean shiftKey, boolean ctrlKey, boolean altKey, int button)(Code)(Java Doc)
public Page mouseMove()(Code)(Java Doc)
public Page mouseMove(boolean shiftKey, boolean ctrlKey, boolean altKey, int button)(Code)(Java Doc)
public Page mouseOut()(Code)(Java Doc)
public Page mouseOut(boolean shiftKey, boolean ctrlKey, boolean altKey, int button)(Code)(Java Doc)
public Page mouseOver()(Code)(Java Doc)
public Page mouseOver(boolean shiftKey, boolean ctrlKey, boolean altKey, int button)(Code)(Java Doc)
public Page mouseUp()(Code)(Java Doc)
public Page mouseUp(boolean shiftKey, boolean ctrlKey, boolean altKey, int button)(Code)(Java Doc)
final protected void notImplemented()(Code)(Java Doc)
protected void preventDefault()(Code)(Java Doc)
protected void printOpeningTagContentAsXml(PrintWriter printWriter)(Code)(Java Doc)
protected void printXml(String indent, PrintWriter printWriter)(Code)(Java Doc)
final public void removeAttribute(String attributeName)(Code)(Java Doc)
final public void removeAttributeNS(String namespaceURI, String localName)(Code)(Java Doc)
final public void removeChild(String tagName, int i)(Code)(Java Doc)
final public void removeEventHandler(String eventName)(Code)(Java Doc)
public void removeHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)(Code)(Java Doc)
public Page rightClick()(Code)(Java Doc)
public Page rightClick(boolean shiftKey, boolean ctrlKey, boolean altKey)(Code)(Java Doc)
final public void setAttribute(String attributeName, String attributeValue)(Code)(Java Doc)
final public void setAttributeNS(String namespaceURI, String qualifiedName, String attributeValue)(Code)(Java Doc)
final public void setAttributeValue(String attributeName, String attributeValue)(Code)(Java Doc)
public void setAttributeValue(String namespaceURI, String qualifiedName, String attributeValue)(Code)(Java Doc)
final public void setEventHandler(String eventName, Function eventHandler)(Code)(Java Doc)
final public void setEventHandler(String eventName, String jsSnippet)(Code)(Java Doc)
final public void setId(String newId)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void type(String text) throws IOException(Code)(Java Doc)
public void type(String text, boolean shiftKey, boolean ctrlKey, boolean altKey) throws IOException(Code)(Java Doc)
public Page type(char c) throws IOException(Code)(Java Doc)
public Page type(char c, boolean shiftKey, boolean ctrlKey, boolean altKey) throws IOException(Code)(Java Doc)


Methods inherited from com.gargoylesoftware.htmlunit.html.DomNamespaceNode
public String getLocalName()(Code)(Java Doc)
public String getNamespaceURI()(Code)(Java Doc)
public String getPrefix()(Code)(Java Doc)
public String getQualifiedName()(Code)(Java Doc)
public void setPrefix(String prefix)(Code)(Java Doc)

Fields inherited from com.gargoylesoftware.htmlunit.html.DomNode
final public static short ATTRIBUTE_NODE(Code)(Java Doc)
final public static short COMMENT_NODE(Code)(Java Doc)
final public static short DOCUMENT_NODE(Code)(Java Doc)
final public static short ELEMENT_NODE(Code)(Java Doc)
final public static String PROPERTY_ELEMENT(Code)(Java Doc)
final public static String READY_STATE_COMPLETE(Code)(Java Doc)
final public static String READY_STATE_INTERACTIVE(Code)(Java Doc)
final public static String READY_STATE_LOADED(Code)(Java Doc)
final public static String READY_STATE_LOADING(Code)(Java Doc)
final public static String READY_STATE_UNINITIALIZED(Code)(Java Doc)
final public static short TEXT_NODE(Code)(Java Doc)

Methods inherited from com.gargoylesoftware.htmlunit.html.DomNode
public void addDomChangeListener(DomChangeListener listener)(Code)(Java Doc)
final public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public DomNode appendChild(DomNode node)(Code)(Java Doc)
public DomNode appendDomChild(DomNode node)(Code)(Java Doc)
public String asText()(Code)(Java Doc)
public String asXml()(Code)(Java Doc)
public DomNode cloneDomNode(boolean deep)(Code)(Java Doc)
public DomNode cloneNode(boolean deep)(Code)(Java Doc)
protected void fireNodeAdded(DomNode parentNode, DomNode addedNode)(Code)(Java Doc)
protected void fireNodeDeleted(DomNode parentNode, DomNode deletedNode)(Code)(Java Doc)
final protected synchronized void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc)
public Iterator getAllHtmlChildElements()(Code)(Java Doc)
public List getByXPath(String xpathExpr) throws JaxenException(Code)(Java Doc)
public Iterator getChildIterator()(Code)(Java Doc)
final protected String getChildrenAsText()(Code)(Java Doc)
public int getEndColumnNumber()(Code)(Java Doc)
public int getEndLineNumber()(Code)(Java Doc)
public Function getEventHandler(String eventName)(Code)(Java Doc)
public Object getFirstByXPath(String xpathExpr) throws JaxenException(Code)(Java Doc)
public DomNode getFirstChild()(Code)(Java Doc)
public DomNode getFirstDomChild()(Code)(Java Doc)
public DomNode getLastChild()(Code)(Java Doc)
public DomNode getLastDomChild()(Code)(Java Doc)
public String getLocalName()(Code)(Java Doc)
final protected Log getLog()(Code)(Java Doc)
public String getNamespaceURI()(Code)(Java Doc)
public Page getNativePage()(Code)(Java Doc)
public DomNode getNextDomSibling()(Code)(Java Doc)
public DomNode getNextSibling()(Code)(Java Doc)
abstract public String getNodeName()(Code)(Java Doc)
abstract public short getNodeType()(Code)(Java Doc)
public String getNodeValue()(Code)(Java Doc)
public HtmlPage getPage()(Code)(Java Doc)
public DomNode getParentDomNode()(Code)(Java Doc)
public DomNode getParentNode()(Code)(Java Doc)
public String getPrefix()(Code)(Java Doc)
public DomNode getPreviousDomSibling()(Code)(Java Doc)
public DomNode getPreviousSibling()(Code)(Java Doc)
public String getReadyState()(Code)(Java Doc)
public ScriptableObject getScriptObject()(Code)(Java Doc)
public int getStartColumnNumber()(Code)(Java Doc)
public int getStartLineNumber()(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
public void insertBefore(DomNode newNode) throws IllegalStateException(Code)(Java Doc)
public boolean isAncestorOf(DomNode node)(Code)(Java Doc)
protected boolean isRenderedVisible()(Code)(Java Doc)
protected boolean isTrimmedText()(Code)(Java Doc)
protected void notifyIncorrectness(String message)(Code)(Java Doc)
protected void onAddedToPage()(Code)(Java Doc)
protected void onAllChildrenAddedToPage()(Code)(Java Doc)
protected void printChildrenAsXml(String indent, PrintWriter printWriter)(Code)(Java Doc)
protected void printXml(String indent, PrintWriter printWriter)(Code)(Java Doc)
protected static String reduceWhitespace(String text)(Code)(Java Doc)
public void remove() throws IllegalStateException(Code)(Java Doc)
public void removeAllChildren()(Code)(Java Doc)
public void removeDomChangeListener(DomChangeListener listener)(Code)(Java Doc)
public void removeEventHandler(String eventName)(Code)(Java Doc)
final public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public void replace(DomNode newNode) throws IllegalStateException(Code)(Java Doc)
void setEndLocation(int endLineNumber, int endColumnNumber)(Code)(Java Doc)
public void setEventHandler(String eventName, Function eventHandler)(Code)(Java Doc)
public void setEventHandler(String eventName, String jsSnippet)(Code)(Java Doc)
protected void setNextSibling(DomNode next)(Code)(Java Doc)
public void setNodeValue(String x)(Code)(Java Doc)
protected void setParentNode(DomNode parent)(Code)(Java Doc)
public void setPrefix(String prefix)(Code)(Java Doc)
protected void setPreviousSibling(DomNode previous)(Code)(Java Doc)
public void setReadyState(String state)(Code)(Java Doc)
public void setScriptObject(ScriptableObject scriptObject)(Code)(Java Doc)
void setStartLocation(int startLineNumber, int startColumnNumber)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.