All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLIsIndexElement Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//

package org.w3c.dom.html;

import org.w3c.dom.*;

/**

  

This element is used for single-line text input. See the ISINDEX element definition in HTML 4.0. This element is deprecated in HTML 4.0.


Property Summary
 form getForm

Returns the FORM element containing this control. Returns null if this control is not within the context of a form.

 prompt getPrompt setPrompt

The prompt message. See the prompt attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

  */ public interface HTMLIsIndexElement extends HTMLElement { /** * Returns the value of the form property. */ HTMLFormElement getForm (); /** Assigns the value of the prompt property. */ void setPrompt (String prompt); /** * Returns the value of the prompt property. */ String getPrompt (); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy