org.w3c.dom.html.HTMLTitleElement 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.*;
/**
The document title. See the
TITLE element definition
in HTML 4.0.
Property Summary
text
getText
setText
The specified title as a string.
*/
public interface HTMLTitleElement
extends HTMLElement
{
/** Assigns the value of the text
property.
*/
void setText (String text);
/**
* Returns the value of the text
property.
*/
String getText ();
}