
org.w3c.dom.html.HTMLHtmlElement 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.*;
/**
Root of an HTML document. See the
HTML element definition
in HTML 4.0.
Property Summary
version
getVersion
setVersion
Version information about the document's DTD. See the
version attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
*/
public interface HTMLHtmlElement
extends HTMLElement
{
/** Assigns the value of the version
property.
*/
void setVersion (String version);
/**
* Returns the value of the version
property.
*/
String getVersion ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy