|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.gargoylesoftware.htmlunit.html.DomNode
com.gargoylesoftware.htmlunit.html.DomNamespaceNode
com.gargoylesoftware.htmlunit.html.DomElement
com.gargoylesoftware.htmlunit.html.HtmlElement
com.gargoylesoftware.htmlunit.html.HtmlOption
public class HtmlOption
Wrapper for the HTML element "option".
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class com.gargoylesoftware.htmlunit.html.DomElement |
|---|
DomElement.ChildElementsIterator |
| Nested classes/interfaces inherited from class com.gargoylesoftware.htmlunit.html.DomNode |
|---|
DomNode.ChildIterator, DomNode.DescendantElementsIterator<T extends DomNode> |
| Field Summary | |
|---|---|
static String |
TAG_NAME
The HTML tag represented by this element. |
| Fields inherited from class com.gargoylesoftware.htmlunit.html.HtmlElement |
|---|
TAB_INDEX_OUT_OF_BOUNDS |
| Fields inherited from class com.gargoylesoftware.htmlunit.html.DomElement |
|---|
ATTRIBUTE_NOT_DEFINED, ATTRIBUTE_VALUE_EMPTY |
| Fields inherited from class com.gargoylesoftware.htmlunit.html.DomNode |
|---|
AS_TEXT_BLANK, AS_TEXT_BLOCK_SEPARATOR, AS_TEXT_NEW_LINE, AS_TEXT_TAB, PROPERTY_ELEMENT, READY_STATE_COMPLETE, READY_STATE_INTERACTIVE, READY_STATE_LOADED, READY_STATE_LOADING, READY_STATE_UNINITIALIZED |
| Method Summary | |
|---|---|
String |
asText()
Returns a textual representation of this element that represents what would be visible to the user if this page was shown in a web browser. |
protected ScriptResult |
doClickFireClickEvent(Event event)
This method implements the control onclick handler call during the click action. |
protected boolean |
doClickStateUpdate()
Selects the option if it's not already selected. |
String |
getDisabledAttribute()
Returns the value of the attribute "disabled". |
HtmlSelect |
getEnclosingSelect()
Gets the enclosing select of this option. |
protected DomNode |
getEventTargetElement()
Returns the event target element. |
String |
getLabelAttribute()
Returns the value of the attribute "label". |
String |
getSelectedAttribute()
Returns the value of the attribute "selected". |
String |
getText()
Gets the text. |
String |
getValueAttribute()
Returns the value of the attribute "value". |
void |
insertBefore(DomNode newNode)
Inserts a new child node before this node into the child relationship this node is a part of. |
boolean |
isDefaultSelected()
Returns whether this Option is selected by default. |
boolean |
isDisabled()
Returns true if the disabled attribute is set for this element. |
boolean |
isSelected()
Returns true if this option is currently selected. |
protected boolean |
isStateUpdateFirst()
Returns true if state updates should be done before onclick event handling. |
Page |
mouseDown(boolean shiftKey,
boolean ctrlKey,
boolean altKey,
int button)
Selects the option if it's not already selected. |
Page |
mouseUp(boolean shiftKey,
boolean ctrlKey,
boolean altKey,
int button)
Selects the option if it's not already selected. |
protected void |
printOpeningTagContentAsXml(PrintWriter printWriter)
Prints the content between "<" and ">" (or "/>") in the output of the tag name and its attributes in XML format. |
void |
reset()
Resets the option to its original selected state. |
void |
setLabelAttribute(String newLabel)
Sets the value of the attribute "label". |
Page |
setSelected(boolean selected)
Sets the selected state of this option. |
void |
setSelected(boolean selected,
boolean invokeOnFocus)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK. Sets the selected state of this option. |
void |
setText(String text)
Sets the text for this HtmlOption. |
void |
setValueAttribute(String newValue)
Sets the value of the attribute "value". |
| Methods inherited from class com.gargoylesoftware.htmlunit.html.DomNamespaceNode |
|---|
getLocalName, getNamespaceURI, getPrefix, getQualifiedName, processImportNode, setPrefix |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.w3c.dom.Node |
|---|
appendChild, compareDocumentPosition, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData |
| Field Detail |
|---|
public static final String TAG_NAME
| Method Detail |
|---|
public boolean isSelected()
public Page setSelected(boolean selected)
selected - true if this option should be selected
public void setSelected(boolean selected,
boolean invokeOnFocus)
selected - true if this option should be selectedinvokeOnFocus - whether to set focus or not.
public void insertBefore(DomNode newNode)
throws IllegalStateException
insertBefore in class DomNodenewNode - the new node to insert
IllegalStateException - if this node is not a child of any other nodepublic HtmlSelect getEnclosingSelect()
null if no select is found (for instance malformed HTML)public void reset()
public final String getSelectedAttribute()
public final boolean isDefaultSelected()
public final boolean isDisabled()
isDisabled in interface DisabledElementpublic final String getDisabledAttribute()
getDisabledAttribute in interface DisabledElementpublic final String getLabelAttribute()
public final void setLabelAttribute(String newLabel)
newLabel - the value of the attribute "label"public final String getValueAttribute()
public final void setValueAttribute(String newValue)
newValue - the value of the attribute "value"
public Page mouseDown(boolean shiftKey,
boolean ctrlKey,
boolean altKey,
int button)
mouseDown in class HtmlElementshiftKey - true if SHIFT is pressed during the mouse clickctrlKey - true if CTRL is pressed during the mouse clickaltKey - true if ALT is pressed during the mouse clickbutton - the button code, must be MouseEvent.BUTTON_LEFT, MouseEvent.BUTTON_MIDDLE
or MouseEvent.BUTTON_RIGHT
public Page mouseUp(boolean shiftKey,
boolean ctrlKey,
boolean altKey,
int button)
mouseUp in class HtmlElementshiftKey - true if SHIFT is pressed during the mouse click releasectrlKey - true if CTRL is pressed during the mouse click releasealtKey - true if ALT is pressed during the mouse click releasebutton - the button code, must be MouseEvent.BUTTON_LEFT, MouseEvent.BUTTON_MIDDLE
or MouseEvent.BUTTON_RIGHT
protected boolean doClickStateUpdate()
throws IOException
The default implementation only calls doClickStateUpdate on parent's HtmlElement (if any).
Subclasses requiring different behavior (like HtmlSubmitInput) will override this method.
doClickStateUpdate in class HtmlElementIOException - if an IO error occurs
protected ScriptResult doClickFireClickEvent(Event event)
throws IOException
doClickFireClickEvent in class HtmlElementevent - the click event used
IOException - if an IO error occursprotected void printOpeningTagContentAsXml(PrintWriter printWriter)
printOpeningTagContentAsXml in class DomElementprintWriter - the writer to print inpublic String asText()
asText in class DomNodepublic void setText(String text)
text - the textpublic String getText()
protected DomNode getEventTargetElement()
getEventTargetElement in class HtmlElementprotected boolean isStateUpdateFirst()
HtmlCheckBoxInput.
isStateUpdateFirst in class HtmlElement
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||