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

HtmlOption
public class HtmlOption extends ClickableElement implements DisabledElement(Code)
Wrapper for the html element "option"
version:
   $Revision: 2132 $
author:
   Mike Bowler
author:
   David K. Taylor
author:
   Christian Sell
author:
   David D. Kilzer
author:
   Marc Guillemot
author:
   Ahmed Ashour


Field Summary
final public static  StringTAG_NAME
    

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

Method Summary
public  DomNodeappendDomChild(DomNode node)
    
public  StringasText()
     This implementation will show the label attribute before the content of the tag if the attribute exists.
protected  PagedoClickAction(Page defaultPage)
     Selects the option if it's not already selected.
final public  StringgetDisabledAttribute()
     Return the value of the attribute "disabled".
public  HtmlSelectgetEnclosingSelect()
    
final public  StringgetLabelAttribute()
     Return the value of the attribute "label".
final public  StringgetSelectedAttribute()
     Return the value of the attribute "selected".
final public  StringgetValueAttribute()
     Return the value of the attribute "value".
public  voidinsertBefore(DomNode newNode)
    
final public  booleanisDefaultSelected()
     Return whether this Option is selected by default. That is whether the "selected" attribute exists when the Option is constructed.
final public  booleanisDisabled()
     Return true if the disabled attribute is set for this element.
public  booleanisSelected()
    
public  voidreset()
     Reset the option to its original selected state.
final public  voidsetLabelAttribute(String newLabel)
     Set the value of the attribute "label".
public  PagesetSelected(boolean selected)
     Set the selected state of this option.
 voidsetSelectedInternal(boolean selected)
     For internal use only.
final public  voidsetValueAttribute(String newValue)
     Set the value of the attribute "value".

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




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



HtmlOption
HtmlOption(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)



asText
public String asText()(Code)
This implementation will show the label attribute before the content of the tag if the attribute exists.



doClickAction
protected Page doClickAction(Page defaultPage) throws IOException(Code)
Selects the option if it's not already selected.



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.



getEnclosingSelect
public HtmlSelect getEnclosingSelect()(Code)
Gets the enclosing select of this option null if no select is found (for instance malformed html)



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



getSelectedAttribute
final public String getSelectedAttribute()(Code)
Return the value of the attribute "selected". Refer to the HTML 4.01 documentation for details on the use of this attribute. The value of the attribute "selected"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.
See Also:    * initial value if value attribute is not set The value of the attribute "value"



insertBefore
public void insertBefore(DomNode newNode) throws IllegalStateException(Code)

See Also:   DomNode.insertBefore(DomNode)



isDefaultSelected
final public boolean isDefaultSelected()(Code)
Return whether this Option is selected by default. That is whether the "selected" attribute exists when the Option is constructed. This also determines the value of getSelectedAttribute() after a reset() on the form. whether the option is selected by default.



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



isSelected
public boolean isSelected()(Code)
Return true if this option is currently selected See above



reset
public void reset()(Code)
Reset the option to its original selected state.



setLabelAttribute
final public void setLabelAttribute(String newLabel)(Code)
Set the value of the attribute "label". Refer to the HTML 4.01 documentation for details on the use of this attribute.
Parameters:
  newLabel - The value of the attribute "label".



setSelected
public Page setSelected(boolean selected)(Code)
Set the selected state of this option. This will possibly also change the selected properties of sibling option elements
Parameters:
  selected - true if this option should be selected. The page that occupies this window after this change is made. Itmay be the same window or it may be a freshly loaded one.



setSelectedInternal
void setSelectedInternal(boolean selected)(Code)
For internal use only. Sets/remove the selected attribute to reflect the select state
Parameters:
  selected - the selected status



setValueAttribute
final public void setValueAttribute(String newValue)(Code)
Set the value of the attribute "value". Refer to the HTML 4.01 documentation for details on the use of this attribute.
Parameters:
  newValue - The value of the attribute "value".



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.