jaxcent
Class HtmlElement

java.lang.Object
  extended byjaxcent.JaxcentObject
      extended byjaxcent.JaxcentHtmlElement
          extended byjaxcent.HtmlElement

public class HtmlElement
extends JaxcentHtmlElement

The class HtmlElement is a generic catch-all class that can be used for any tags on the page. It provides all methods, properties and events supported by Jaxcent. However, if the methods or properties are not supported by the actual HTML element on the page, a run time error may occur. If the event is not supported by the HTML element, no callback will come back, and a run time error may also occur.


Constructor Summary
HtmlElement(JaxcentPage page, SearchType searchType, java.lang.String str)
          Search for HTML element on page by specified search type and search string.
HtmlElement(JaxcentPage page, SearchType searchType, java.lang.String str, int index)
          Search for HTML Element on page by specified search type and search string, and search index.
HtmlElement(JaxcentPage page, SearchType searchType, java.lang.String tag, java.lang.String text)
          Create new HTML Element on page using the specified tag.
HtmlElement(JaxcentPage page, SearchType searchType, java.lang.String tag, java.lang.String[] attributes, java.lang.String[] values)
          Create new HTML element on page using the specified attributes and values.
HtmlElement(JaxcentPage page, SearchType searchType, java.lang.String tag, java.lang.String text, java.lang.String[] attributes, java.lang.String[] values)
          Create new HTML element on page using the specified text and attributes and values.
HtmlElement(JaxcentPage page, java.lang.String id)
          Search for HTML element on page by specified ID
 
Method Summary
 void blur()
          Lose the input focus.
 void click()
          Simulate a mouse click on the HTML element.
 void delete()
          Delete this element.
 void focus()
          Get the input focus.
 java.lang.String getAbbr()
          Retrieve the "abbr" property
 java.lang.String getAction()
          Retrieve the "action" property
 java.lang.String getAlign()
          Retrieve the "align" property
 java.lang.String getAxis()
          Retrieve the "axis" property
 int getBorder()
          Retrieve the "border" property
 java.lang.String getCaption()
          Retrieve the "caption" property
 int getCellIndex()
          Retrieve the "cellIndex" property
 int getCellPadding()
          Retrieve the "cellPadding" property
 int getCellSpacing()
          Retrieve the "cellSpacing" property
 boolean getChecked()
          Retrieve the "checked" property
 int getColSpan()
          Retrieve the "colSpan" property
 boolean getComplete()
          Checks if loading is complete
 java.lang.String getCoords()
          Retrieve the "coords" property
 boolean getDefaultchecked()
          Returns whether this checkbox/radiobutton is checked on by default
 boolean getDefaultSelected()
          Retrieve the "defaultSelected" property
 java.lang.String getDefaultValue()
          Retrieve the "defaultValue" property
 boolean getDisabled()
          Retrieve the "disabled" property
 java.lang.String getFrame()
          Retrieve the "frame" property
 int getHeight()
          Retrieve the "height" property
 java.lang.String getHref()
          Retrieve the "href" property
 int getHspace()
          Retrieve the "hspace" property
 int getIndex()
          Retrieve the "index" property
 java.lang.String getInnerHTML()
          Retrieve the "innerHTML" property
 boolean getIsMap()
          Retrieve the "isMap" property
 int getLength()
          Retrieve the "length" property
 java.lang.String getLowsrc()
          Retrieve the "lowsrc" property
 java.lang.String getMaxLength()
          Returns the maximum number of characters allowed in field
 java.lang.String getMethod()
          Retrieve the "method" property
 boolean getMultiple()
          Whether multiple items can be selected
 java.lang.String getName()
          Retrieve the "name" property
 boolean getReadOnly()
          Retrieve the "readOnly" property
 int getRowIndex()
          Retrieve the "rowIndex" property
 int getRows()
          Retrieve the "rows" property
 int getRowSpan()
          Retrieve the "rowSpan" property
 java.lang.String getRules()
          Retrieve the "rules" property
 boolean getSelected()
          Retrieve the "selected" property
 int getSelectedIndex()
          Retrieve the "selectedIndex" property
 java.lang.String getShape()
          Retrieve the "shape" property
 int getSize()
          Retrieve the "size" property
 java.lang.String getSrc()
          Retrieve the "src" property
 java.lang.String getTarget()
          Retrieve the "target" property
 java.lang.String getText()
          Retrieve the "text" property
 java.lang.String getUseMap()
          Retrieve the "useMap" property
 java.lang.String getVAlign()
          Retrieve the "vAlign" property
 java.lang.String getValue()
          Retrieve the "value" property
 int getVspace()
          Retrieve the "vspace" property
 int getWidth()
          Retrieve the "width" property
protected  void onAbort()
          Override to handle the "abort" event
protected  void onBlur()
          Override to handle the "blur" event
protected  void onChange()
          Override to handle the "change" event
protected  void onChange(int selectedIndex)
          Override to handle the "change" event and receive current selected index
protected  void onChange(java.lang.String value)
          Override to handle the "change" event and receive current element value
protected  void onClick()
          Override to handle the "click" event
protected  void onClick(java.util.Map pageData)
          Override to handle the "click" event and receive current page data
protected  void onComplete()
          Override to handle the "complete" event
protected  void onError()
          Override to handle the "error" event
protected  void onFocus()
          Override to handle the "focus" event
protected  void onKeyDown()
          Override to handle the "keyDown" event
protected  void onKeyDown(java.lang.String value)
          Override to handle the "keyDown" event and receive current element value
protected  void onKeypress()
          Override to handle the "keypress" event
protected  void onKeypress(java.lang.String value)
          Override to handle the "keypress" event and receive current element value
protected  void onKeyUp()
          Override to handle the "keyUp" event
protected  void onKeyUp(java.lang.String value)
          Override to handle the "keyUp" event and receive current element value
protected  void onLoad()
          Override to handle the "load" event
protected  void onMouseDown()
          Override to handle the "mouseDown" event
protected  void onMouseDown(java.lang.String value)
          Override to handle the "mouseDown" event and receive current element value
protected  void onMouseUp()
          Override to handle the "mouseUp" event
protected  void onMouseUp(java.lang.String value)
          Override to handle the "mouseUp" event and receive current element value
protected  void onReset()
          Override to handle the "reset" event
protected  void onSelect()
          Override to handle the "select" event
protected  void onSubmit()
          Override to handle the "submit" event
protected  void onSubmit(java.util.Map pageData)
          Override to handle the "submit" event and receive current page data
 void reset()
          Reset the form.
 void scrollIntoView(boolean top)
          Bring the element into view, by scrolling if necessary.
 void select()
          Select the text in the field.
 void setAbbr(java.lang.String value)
          Set the "abbr" property
 void setAction(java.lang.String value)
          Set the "action" property
 void setAlign(java.lang.String value)
          Set the "align" property
 void setAxis(java.lang.String value)
          Set the "axis" property
 void setBorder(int value)
          Set the "border" property
 void setCaption(java.lang.String value)
          Set the "caption" property
 void setCellIndex(int value)
          Set the "cellIndex" property
 void setCellPadding(int value)
          Set the "cellPadding" property
 void setCellSpacing(int value)
          Set the "cellSpacing" property
 void setChecked(boolean value)
          Set the "checked" property
 void setColSpan(int value)
          Set the "colSpan" property
 void setComplete(boolean value)
           
 void setCoords(java.lang.String value)
          Set the "coords" property
 void setDefaultchecked(boolean value)
           
 void setDefaultSelected(boolean value)
          Set the "defaultSelected" property
 void setDefaultValue(java.lang.String value)
          Set the "defaultValue" property
 void setDisabled(boolean value)
          Set the "disabled" property
 void setFrame(java.lang.String value)
          Set the "frame" property
 void setHeight(int value)
          Set the "height" property
 void setHref(java.lang.String value)
          Set the "href" property
 void setHspace(int value)
          Set the "hspace" property
 void setIndex(int value)
          Set the "index" property
 void setInnerHTML(java.lang.String value)
          Set the "innerHTML" property
 void setIsMap(boolean value)
          Set the "isMap" property
 void setLength(int value)
          Set the "length" property
 void setLowsrc(java.lang.String value)
          Set the "lowsrc" property
 void setMaxLength(java.lang.String value)
          Sets the maximum number of characters allowed in field
 void setMethod(java.lang.String value)
          Set the "method" property
 void setMultiple(boolean value)
          Sets whether multiple items can be selected
 void setName(java.lang.String value)
          Set the "name" property
 void setReadOnly(boolean value)
          Set the "readOnly" property
 void setRowIndex(int value)
          Set the "rowIndex" property
 void setRows(int value)
          Set the "rows" property
 void setRowSpan(int value)
          Set the "rowSpan" property
 void setRules(java.lang.String value)
          Set the "rules" property
 void setSelected(boolean value)
          Set the "selected" property
 void setSelectedIndex(int value)
          Set the "selectedIndex" property
 void setShape(java.lang.String value)
          Set the "shape" property
 void setSize(int value)
          Set the "size" property
 void setSrc(java.lang.String value)
          Set the "src" property
 void setTarget(java.lang.String value)
          Set the "target" property
 void setText(java.lang.String value)
          Set the "text" property
 void setUseMap(java.lang.String value)
          Set the "useMap" property
 void setVAlign(java.lang.String value)
          Set the "vAlign" property
 void setValue(java.lang.String value)
          Set the "value" property
 void setVspace(int value)
          Set the "vspace" property
 void setWidth(int value)
          Set the "width" property
 void submit()
          Submit the form.
 
Methods inherited from class jaxcent.JaxcentHtmlElement
getAttribute, getID, getInnerText, getStyle, getTag, hide, insertAfter, insertAtBeginning, insertAtBeginning, insertAtEnd, insertAtEnd, insertBefore, setAttribute, setInnerText, setStyle, setStyle, setStyle, setStyle, setVisible, show
 
Methods inherited from class jaxcent.JaxcentObject
addJavaScriptVerification, getId, getProperty, setId, setProperty, setProperty, setProperty, setProperty
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HtmlElement

public HtmlElement(JaxcentPage page,
                   java.lang.String id)
Search for HTML element on page by specified ID


HtmlElement

public HtmlElement(JaxcentPage page,
                   SearchType searchType,
                   java.lang.String str)
Search for HTML element on page by specified search type and search string. If the search returns multiple objects, use the first one.


HtmlElement

public HtmlElement(JaxcentPage page,
                   SearchType searchType,
                   java.lang.String str,
                   int index)
Search for HTML Element on page by specified search type and search string, and search index. The search is expected to return multiple results. The search index is 0-based, and specifies the index in the multiple results. This constructor is not for use with createNew.


HtmlElement

public HtmlElement(JaxcentPage page,
                   SearchType searchType,
                   java.lang.String tag,
                   java.lang.String text)
            throws Jaxception
Create new HTML Element on page using the specified tag. Search type must be createNew. If text is non null, the new element is populated with that text.


HtmlElement

public HtmlElement(JaxcentPage page,
                   SearchType searchType,
                   java.lang.String tag,
                   java.lang.String[] attributes,
                   java.lang.String[] values)
            throws Jaxception
Create new HTML element on page using the specified attributes and values. Search type must be createNew. Attributes and values arrays must have the same length.


HtmlElement

public HtmlElement(JaxcentPage page,
                   SearchType searchType,
                   java.lang.String tag,
                   java.lang.String text,
                   java.lang.String[] attributes,
                   java.lang.String[] values)
            throws Jaxception
Create new HTML element on page using the specified text and attributes and values. Search type must be createNew. Attributes and values arrays must have the same length.

Method Detail

onReset

protected void onReset()
Override to handle the "reset" event


onMouseDown

protected void onMouseDown()
Override to handle the "mouseDown" event


onMouseDown

protected void onMouseDown(java.lang.String value)
Override to handle the "mouseDown" event and receive current element value


onAbort

protected void onAbort()
Override to handle the "abort" event


onKeyDown

protected void onKeyDown()
Override to handle the "keyDown" event


onKeyDown

protected void onKeyDown(java.lang.String value)
Override to handle the "keyDown" event and receive current element value


onMouseUp

protected void onMouseUp()
Override to handle the "mouseUp" event


onMouseUp

protected void onMouseUp(java.lang.String value)
Override to handle the "mouseUp" event and receive current element value


onError

protected void onError()
Override to handle the "error" event


onSelect

protected void onSelect()
Override to handle the "select" event


onKeypress

protected void onKeypress()
Override to handle the "keypress" event


onKeypress

protected void onKeypress(java.lang.String value)
Override to handle the "keypress" event and receive current element value


onKeyUp

protected void onKeyUp()
Override to handle the "keyUp" event


onKeyUp

protected void onKeyUp(java.lang.String value)
Override to handle the "keyUp" event and receive current element value


onBlur

protected void onBlur()
Override to handle the "blur" event


onFocus

protected void onFocus()
Override to handle the "focus" event


onSubmit

protected void onSubmit()
Override to handle the "submit" event


onSubmit

protected void onSubmit(java.util.Map pageData)
Override to handle the "submit" event and receive current page data


onChange

protected void onChange()
Override to handle the "change" event


onChange

protected void onChange(java.lang.String value)
Override to handle the "change" event and receive current element value


onChange

protected void onChange(int selectedIndex)
Override to handle the "change" event and receive current selected index


onComplete

protected void onComplete()
Override to handle the "complete" event


onLoad

protected void onLoad()
Override to handle the "load" event


onClick

protected void onClick()
Override to handle the "click" event


onClick

protected void onClick(java.util.Map pageData)
Override to handle the "click" event and receive current page data


setSelectedIndex

public void setSelectedIndex(int value)
                      throws Jaxception
Set the "selectedIndex" property

Throws:
Jaxception

getSelectedIndex

public int getSelectedIndex()
                     throws Jaxception
Retrieve the "selectedIndex" property

Throws:
Jaxception

setVspace

public void setVspace(int value)
               throws Jaxception
Set the "vspace" property

Throws:
Jaxception

getVspace

public int getVspace()
              throws Jaxception
Retrieve the "vspace" property

Throws:
Jaxception

setValue

public void setValue(java.lang.String value)
              throws Jaxception
Set the "value" property

Throws:
Jaxception

getValue

public java.lang.String getValue()
                          throws Jaxception
Retrieve the "value" property

Throws:
Jaxception

setIsMap

public void setIsMap(boolean value)
              throws Jaxception
Set the "isMap" property

Throws:
Jaxception

getIsMap

public boolean getIsMap()
                 throws Jaxception
Retrieve the "isMap" property

Throws:
Jaxception

setLength

public void setLength(int value)
               throws Jaxception
Set the "length" property

Throws:
Jaxception

getLength

public int getLength()
              throws Jaxception
Retrieve the "length" property

Throws:
Jaxception

setRows

public void setRows(int value)
             throws Jaxception
Set the "rows" property

Throws:
Jaxception

getRows

public int getRows()
            throws Jaxception
Retrieve the "rows" property

Throws:
Jaxception

setRowSpan

public void setRowSpan(int value)
                throws Jaxception
Set the "rowSpan" property

Throws:
Jaxception

getRowSpan

public int getRowSpan()
               throws Jaxception
Retrieve the "rowSpan" property

Throws:
Jaxception

setFrame

public void setFrame(java.lang.String value)
              throws Jaxception
Set the "frame" property

Throws:
Jaxception

getFrame

public java.lang.String getFrame()
                          throws Jaxception
Retrieve the "frame" property

Throws:
Jaxception

setSelected

public void setSelected(boolean value)
                 throws Jaxception
Set the "selected" property

Throws:
Jaxception

getSelected

public boolean getSelected()
                    throws Jaxception
Retrieve the "selected" property

Throws:
Jaxception

setBorder

public void setBorder(int value)
               throws Jaxception
Set the "border" property

Throws:
Jaxception

getBorder

public int getBorder()
              throws Jaxception
Retrieve the "border" property

Throws:
Jaxception

setHeight

public void setHeight(int value)
               throws Jaxception
Set the "height" property

Throws:
Jaxception

getHeight

public int getHeight()
              throws Jaxception
Retrieve the "height" property

Throws:
Jaxception

setDefaultchecked

public void setDefaultchecked(boolean value)
                       throws Jaxception
Throws:
Jaxception

getDefaultchecked

public boolean getDefaultchecked()
                          throws Jaxception
Returns whether this checkbox/radiobutton is checked on by default

Throws:
Jaxception

setCoords

public void setCoords(java.lang.String value)
               throws Jaxception
Set the "coords" property

Throws:
Jaxception

getCoords

public java.lang.String getCoords()
                           throws Jaxception
Retrieve the "coords" property

Throws:
Jaxception

focus

public void focus()
           throws Jaxception
Get the input focus.

Throws:
Jaxception

setCaption

public void setCaption(java.lang.String value)
                throws Jaxception
Set the "caption" property

Throws:
Jaxception

getCaption

public java.lang.String getCaption()
                            throws Jaxception
Retrieve the "caption" property

Throws:
Jaxception

setComplete

public void setComplete(boolean value)
                 throws Jaxception
Throws:
Jaxception

getComplete

public boolean getComplete()
                    throws Jaxception
Checks if loading is complete

Throws:
Jaxception

setDefaultValue

public void setDefaultValue(java.lang.String value)
                     throws Jaxception
Set the "defaultValue" property

Throws:
Jaxception

getDefaultValue

public java.lang.String getDefaultValue()
                                 throws Jaxception
Retrieve the "defaultValue" property

Throws:
Jaxception

setCellPadding

public void setCellPadding(int value)
                    throws Jaxception
Set the "cellPadding" property

Throws:
Jaxception

getCellPadding

public int getCellPadding()
                   throws Jaxception
Retrieve the "cellPadding" property

Throws:
Jaxception

setName

public void setName(java.lang.String value)
             throws Jaxception
Set the "name" property

Throws:
Jaxception

getName

public java.lang.String getName()
                         throws Jaxception
Retrieve the "name" property

Throws:
Jaxception

delete

public void delete()
            throws Jaxception
Delete this element.

Throws:
Jaxception

setRowIndex

public void setRowIndex(int value)
                 throws Jaxception
Set the "rowIndex" property

Throws:
Jaxception

getRowIndex

public int getRowIndex()
                throws Jaxception
Retrieve the "rowIndex" property

Throws:
Jaxception

select

public void select()
            throws Jaxception
Select the text in the field.

Throws:
Jaxception

setInnerHTML

public void setInnerHTML(java.lang.String value)
                  throws Jaxception
Set the "innerHTML" property

Throws:
Jaxception

getInnerHTML

public java.lang.String getInnerHTML()
                              throws Jaxception
Retrieve the "innerHTML" property

Throws:
Jaxception

setCellIndex

public void setCellIndex(int value)
                  throws Jaxception
Set the "cellIndex" property

Throws:
Jaxception

getCellIndex

public int getCellIndex()
                 throws Jaxception
Retrieve the "cellIndex" property

Throws:
Jaxception

setMethod

public void setMethod(java.lang.String value)
               throws Jaxception
Set the "method" property

Throws:
Jaxception

getMethod

public java.lang.String getMethod()
                           throws Jaxception
Retrieve the "method" property

Throws:
Jaxception

setText

public void setText(java.lang.String value)
             throws Jaxception
Set the "text" property

Throws:
Jaxception

getText

public java.lang.String getText()
                         throws Jaxception
Retrieve the "text" property

Throws:
Jaxception

setChecked

public void setChecked(boolean value)
                throws Jaxception
Set the "checked" property

Throws:
Jaxception

getChecked

public boolean getChecked()
                   throws Jaxception
Retrieve the "checked" property

Throws:
Jaxception

click

public void click()
           throws Jaxception
Simulate a mouse click on the HTML element.

Throws:
Jaxception

blur

public void blur()
          throws Jaxception
Lose the input focus.

Throws:
Jaxception

setSrc

public void setSrc(java.lang.String value)
            throws Jaxception
Set the "src" property

Throws:
Jaxception

getSrc

public java.lang.String getSrc()
                        throws Jaxception
Retrieve the "src" property

Throws:
Jaxception

setAlign

public void setAlign(java.lang.String value)
              throws Jaxception
Set the "align" property

Throws:
Jaxception

getAlign

public java.lang.String getAlign()
                          throws Jaxception
Retrieve the "align" property

Throws:
Jaxception

setDefaultSelected

public void setDefaultSelected(boolean value)
                        throws Jaxception
Set the "defaultSelected" property

Throws:
Jaxception

getDefaultSelected

public boolean getDefaultSelected()
                           throws Jaxception
Retrieve the "defaultSelected" property

Throws:
Jaxception

setWidth

public void setWidth(int value)
              throws Jaxception
Set the "width" property

Throws:
Jaxception

getWidth

public int getWidth()
             throws Jaxception
Retrieve the "width" property

Throws:
Jaxception

setDisabled

public void setDisabled(boolean value)
                 throws Jaxception
Set the "disabled" property

Throws:
Jaxception

getDisabled

public boolean getDisabled()
                    throws Jaxception
Retrieve the "disabled" property

Throws:
Jaxception

setReadOnly

public void setReadOnly(boolean value)
                 throws Jaxception
Set the "readOnly" property

Throws:
Jaxception

getReadOnly

public boolean getReadOnly()
                    throws Jaxception
Retrieve the "readOnly" property

Throws:
Jaxception

setVAlign

public void setVAlign(java.lang.String value)
               throws Jaxception
Set the "vAlign" property

Throws:
Jaxception

getVAlign

public java.lang.String getVAlign()
                           throws Jaxception
Retrieve the "vAlign" property

Throws:
Jaxception

setLowsrc

public void setLowsrc(java.lang.String value)
               throws Jaxception
Set the "lowsrc" property

Throws:
Jaxception

getLowsrc

public java.lang.String getLowsrc()
                           throws Jaxception
Retrieve the "lowsrc" property

Throws:
Jaxception

setAbbr

public void setAbbr(java.lang.String value)
             throws Jaxception
Set the "abbr" property

Throws:
Jaxception

getAbbr

public java.lang.String getAbbr()
                         throws Jaxception
Retrieve the "abbr" property

Throws:
Jaxception

setCellSpacing

public void setCellSpacing(int value)
                    throws Jaxception
Set the "cellSpacing" property

Throws:
Jaxception

getCellSpacing

public int getCellSpacing()
                   throws Jaxception
Retrieve the "cellSpacing" property

Throws:
Jaxception

setUseMap

public void setUseMap(java.lang.String value)
               throws Jaxception
Set the "useMap" property

Throws:
Jaxception

getUseMap

public java.lang.String getUseMap()
                           throws Jaxception
Retrieve the "useMap" property

Throws:
Jaxception

setIndex

public void setIndex(int value)
              throws Jaxception
Set the "index" property

Throws:
Jaxception

getIndex

public int getIndex()
             throws Jaxception
Retrieve the "index" property

Throws:
Jaxception

setTarget

public void setTarget(java.lang.String value)
               throws Jaxception
Set the "target" property

Throws:
Jaxception

getTarget

public java.lang.String getTarget()
                           throws Jaxception
Retrieve the "target" property

Throws:
Jaxception

setMultiple

public void setMultiple(boolean value)
                 throws Jaxception
Sets whether multiple items can be selected

Throws:
Jaxception

getMultiple

public boolean getMultiple()
                    throws Jaxception
Whether multiple items can be selected

Throws:
Jaxception

setHspace

public void setHspace(int value)
               throws Jaxception
Set the "hspace" property

Throws:
Jaxception

getHspace

public int getHspace()
              throws Jaxception
Retrieve the "hspace" property

Throws:
Jaxception

reset

public void reset()
           throws Jaxception
Reset the form.

Throws:
Jaxception

setRules

public void setRules(java.lang.String value)
              throws Jaxception
Set the "rules" property

Throws:
Jaxception

getRules

public java.lang.String getRules()
                          throws Jaxception
Retrieve the "rules" property

Throws:
Jaxception

setAction

public void setAction(java.lang.String value)
               throws Jaxception
Set the "action" property

Throws:
Jaxception

getAction

public java.lang.String getAction()
                           throws Jaxception
Retrieve the "action" property

Throws:
Jaxception

setAxis

public void setAxis(java.lang.String value)
             throws Jaxception
Set the "axis" property

Throws:
Jaxception

getAxis

public java.lang.String getAxis()
                         throws Jaxception
Retrieve the "axis" property

Throws:
Jaxception

setColSpan

public void setColSpan(int value)
                throws Jaxception
Set the "colSpan" property

Throws:
Jaxception

getColSpan

public int getColSpan()
               throws Jaxception
Retrieve the "colSpan" property

Throws:
Jaxception

submit

public void submit()
            throws Jaxception
Submit the form.

Throws:
Jaxception

setMaxLength

public void setMaxLength(java.lang.String value)
                  throws Jaxception
Sets the maximum number of characters allowed in field

Throws:
Jaxception

getMaxLength

public java.lang.String getMaxLength()
                              throws Jaxception
Returns the maximum number of characters allowed in field

Throws:
Jaxception

setSize

public void setSize(int value)
             throws Jaxception
Set the "size" property

Throws:
Jaxception

getSize

public int getSize()
            throws Jaxception
Retrieve the "size" property

Throws:
Jaxception

scrollIntoView

public void scrollIntoView(boolean top)
                    throws Jaxception
Bring the element into view, by scrolling if necessary. If top is true, the top of element is brought into view, otherwise the bottom of the element is scrolled into view.

Throws:
Jaxception

setHref

public void setHref(java.lang.String value)
             throws Jaxception
Set the "href" property

Throws:
Jaxception

getHref

public java.lang.String getHref()
                         throws Jaxception
Retrieve the "href" property

Throws:
Jaxception

setShape

public void setShape(java.lang.String value)
              throws Jaxception
Set the "shape" property

Throws:
Jaxception

getShape

public java.lang.String getShape()
                          throws Jaxception
Retrieve the "shape" property

Throws:
Jaxception