Module jdk.xml.dom

Interface HTMLLabelElement

All Superinterfaces:
Element, HTMLElement, Node

public interface HTMLLabelElement extends HTMLElement
Form field label text. See the LABEL element definition in HTML 4.0.

See also the Document Object Model (DOM) Level 2 Specification.

Since:
1.4, DOM Level 2
  • Method Details

    • getForm

      HTMLFormElement getForm()
      Returns the FORM element containing this control. Returns null if this control is not within the context of a form.
    • getAccessKey

      String getAccessKey()
      A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.0.
    • setAccessKey

      void setAccessKey(String accessKey)
    • getHtmlFor

      String getHtmlFor()
      This attribute links this label with another form control by id attribute. See the for attribute definition in HTML 4.0.
    • setHtmlFor

      void setHtmlFor(String htmlFor)