Java Doc for HtmlSelect.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.HtmlSelect

HtmlSelect
public class HtmlSelect extends FocusableElement implements DisabledElement,SubmittableElement(Code)
Wrapper for the HTML element "select".
version:
   $Revision: 2132 $
author:
   Mike Bowler
author:
   Mike J. Bresnahan
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  HtmlSelect(HtmlPage page, Map attributes)
    
 HtmlSelect(String namespaceURI, String qualifiedName, HtmlPage page, Map attributes)
    

Method Summary
public  DomNodeappendDomChild(DomNode node)
    
public  voidappendOption(HtmlOption newOption)
     Add a new option at the end.
public  StringasText()
     Returns a text representation of this element that represents what would be visible to the user if this page was shown in a web browser.
public  voidfakeSelectedAttribute(String optionValue)
     Set the selected value to be something that was not originally contained in the document.
public  voidfakeSelectedAttribute(String optionValues)
     Set the selected values to be something that were not originally contained in the document.
public  StringgetDefaultValue()
    
final public  StringgetDisabledAttribute()
     Return the value of the attribute "disabled".
final public  StringgetMultipleAttribute()
     Return the value of the attribute "multiple".
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".
public  HtmlOptiongetOption(int index)
     Return the indexed option.
public  HtmlOptiongetOptionByValue(String value)
    
public  intgetOptionSize()
    
public  ListgetOptions()
    
public  ListgetSelectedOptions()
     Return a List containing all of the currently selected options.
final public  StringgetSizeAttribute()
     Return the value of the attribute "size".
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".
public  booleanisDefaultChecked()
     This 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  booleanisMultipleSelectEnabled()
    
 booleanisValidForSubmission()
    
protected  voidonAllChildrenAddedToPage()
     If we were given an invalid size attribute, normalize it.
public  voidremoveOption(int index)
     Remove an option at the given index.
public  voidreplaceOption(int index, HtmlOption newOption)
     Replace an option at the given index with a new option.
public  voidreset()
     Return the value of this element to what it was at the time the page was loaded.
public  voidsetDefaultChecked(boolean defaultChecked)
     This implementation is empty; only checkboxes and radio buttons really care what the default checked value is.
public  voidsetDefaultValue(String defaultValue)
    
public  voidsetOptionSize(int newLength)
     Remove options by reducing the "length" property.
public  PagesetSelectedAttribute(String optionValue, boolean isSelected)
     Set the "selected" state of the specified option.
public  PagesetSelectedAttribute(HtmlOption selectedOption, boolean isSelected)
     Set the "selected" state of the specified option.

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




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



HtmlSelect
HtmlSelect(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
appendDomChild
public DomNode appendDomChild(DomNode node)(Code)

See Also:   DomNode.appendDomChild(DomNode)



appendOption
public void appendOption(HtmlOption newOption)(Code)
Add a new option at the end.
Parameters:
  newOption - The new option to add



asText
public String asText()(Code)
Returns a text representation of this element that represents what would be visible to the user if this page was shown in a web browser. If the user can only select one option at a time, this method returns the selected option. If the user can select multiple options, this method returns all options. The element as text.



fakeSelectedAttribute
public void fakeSelectedAttribute(String optionValue)(Code)
Set the selected value to be something that was not originally contained in the document.
Parameters:
  optionValue - The value of the new "selected" option



fakeSelectedAttribute
public void fakeSelectedAttribute(String optionValues)(Code)
Set the selected values to be something that were not originally contained in the document.
Parameters:
  optionValues - The values of the new "selected" options



getDefaultValue
public String getDefaultValue()(Code)

See Also:   SubmittableElement.setDefaultValue(String)



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.



getMultipleAttribute
final public String getMultipleAttribute()(Code)
Return the value of the attribute "multiple". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "multiple" 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.



getOption
public HtmlOption getOption(int index)(Code)
Return the indexed option.
Parameters:
  index - The index The option specified by the index



getOptionByValue
public HtmlOption getOptionByValue(String value) throws ElementNotFoundException(Code)
Return the HtmlOption object that corresponds to the specified value
Parameters:
  value - The value to search by See above
exception:
  ElementNotFoundException - If a particular xml element could not be found in the dom model



getOptionSize
public int getOptionSize()(Code)
Return the number of options The number of options



getOptions
public List getOptions()(Code)
Return a List containing all the options See above



getSelectedOptions
public List getSelectedOptions()(Code)
Return a List containing all of the currently selected options. The following special conditions can occur if the element is in single select mode:
  • if multiple options are erroneously selected, the last one is returned
  • if no options are selected, the first one is returned
See above



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.



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.



isDefaultChecked
public boolean isDefaultChecked()(Code)
This 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 element is disabled.



isMultipleSelectEnabled
public boolean isMultipleSelectEnabled()(Code)
Return true if this select is using "multiple select" See above



isValidForSubmission
boolean isValidForSubmission()(Code)
Indicates if this select is submittable false if not



onAllChildrenAddedToPage
protected void onAllChildrenAddedToPage()(Code)
If we were given an invalid size attribute, normalize it. Then set a default selected option if none was specified and the size is 1 or less and this isn't a multiple selection input.



removeOption
public void removeOption(int index)(Code)
Remove an option at the given index.
Parameters:
  index - The index of the option to remove



replaceOption
public void replaceOption(int index, HtmlOption newOption)(Code)
Replace an option at the given index with a new option.
Parameters:
  index - The index of the option to remove
Parameters:
  newOption - The new option to replace to indexed option



reset
public void reset()(Code)
Return the value of this element to what it was at the time the page was loaded.



setDefaultChecked
public void setDefaultChecked(boolean defaultChecked)(Code)
This 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)

See Also:   SubmittableElement.setDefaultValue(String)



setOptionSize
public void setOptionSize(int newLength)(Code)
Remove options by reducing the "length" property. This has no effect if the length is set to the same or greater.
Parameters:
  newLength - The new length property value



setSelectedAttribute
public Page setSelectedAttribute(String optionValue, boolean isSelected)(Code)
Set the "selected" state of the specified option. If this "select" is single select then calling this will deselect all other options

Only options that are actually in the document may be selected. If you need to select an option that really isn't there (ie testing error cases) then use HtmlSelect.fakeSelectedAttribute(String) or HtmlSelect.fakeSelectedAttribute(String[]) instead.
Parameters:
  isSelected - true if the option is to become selected
Parameters:
  optionValue - The value of the option that is to change The page that occupies this window after this change is made. Itmay be the same window or it may be a freshly loaded one.




setSelectedAttribute
public Page setSelectedAttribute(HtmlOption selectedOption, boolean isSelected)(Code)
Set the "selected" state of the specified option. If this "select" is single select then calling this will deselect all other options

Only options that are actually in the document may be selected. If you need to select an option that really isn't there (ie testing error cases) then use HtmlSelect.fakeSelectedAttribute(String) or HtmlSelect.fakeSelectedAttribute(String[]) instead.
Parameters:
  isSelected - true if the option is to become selected
Parameters:
  selectedOption - The value of the option that is to change The page that occupies this window after this change is made. Itmay 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.