Home » xml-commons-external-1.4.01-src » org.w3c » dom » html » [javadoc | source]
org.w3c.dom.html
public interface: HTMLButtonElement [javadoc | source]

All Implemented Interfaces:
    HTMLElement

Push button. See the BUTTON element definition in HTML 4.0.
Method from org.w3c.dom.html.HTMLButtonElement Summary:
getAccessKey,   getDisabled,   getForm,   getName,   getTabIndex,   getType,   getValue,   setAccessKey,   setDisabled,   setName,   setTabIndex,   setValue
Method from org.w3c.dom.html.HTMLButtonElement Detail:
 public String getAccessKey()
    A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.0.
 public boolean getDisabled()
    The control is unavailable in this context. See the disabled attribute definition in HTML 4.0.
 public HTMLFormElement getForm()
    Returns the FORM element containing this control.Returns null if this control is not within the context of a form.
 public String getName()
    Form control or object name when submitted with a form. See the name attribute definition in HTML 4.0.
 public int getTabIndex()
    Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.0.
 public String getType()
    The type of button. See the type attribute definition in HTML 4.0.
 public String getValue()
    The current form control value. See the value attribute definition in HTML 4.0.
 public  void setAccessKey(String accessKey)
 public  void setDisabled(boolean disabled)
 public  void setName(String name)
 public  void setTabIndex(int tabIndex)
 public  void setValue(String value)