
org.w3c.dom.html.HTMLBodyElement Maven / Gradle / Ivy
// 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 HTML document body. This element is always present in the DOM API, even if the tags are not present in the source document. See the
BODY element definition
in HTML 4.0.
Property Summary
aLink
getALink
setALink
Color of active links (after mouse-button down, but before mouse-button up). See the
alink attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
background
getBackground
setBackground
URI of the background texture tile image. See the
background attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
bgColor
getBgColor
setBgColor
Document background color. See the
bgcolor attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
link
getLink
setLink
Color of links that are not active and unvisited. See the
link attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
text
getText
setText
Document text color. See the
text attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
vLink
getVLink
setVLink
Color of links that have been visited by the user. See the
vlink attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
*/
public interface HTMLBodyElement
extends HTMLElement
{
/** Assigns the value of the aLink
property.
*/
void setALink (String aLink);
/**
* Returns the value of the aLink
property.
*/
String getALink ();
/** Assigns the value of the background
property.
*/
void setBackground (String background);
/**
* Returns the value of the background
property.
*/
String getBackground ();
/** Assigns the value of the bgColor
property.
*/
void setBgColor (String bgColor);
/**
* Returns the value of the bgColor
property.
*/
String getBgColor ();
/** Assigns the value of the link
property.
*/
void setLink (String link);
/**
* Returns the value of the link
property.
*/
String getLink ();
/** Assigns the value of the text
property.
*/
void setText (String text);
/**
* Returns the value of the text
property.
*/
String getText ();
/** Assigns the value of the vLink
property.
*/
void setVLink (String vLink);
/**
* Returns the value of the vLink
property.
*/
String getVLink ();
}