org.w3c.dom.html.HTMLBaseElement 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.*;
/**
Document base URI. See the
BASE element definition
in HTML 4.0.
Property Summary
href
getHref
setHref
The base URI See the
href attribute definition
in HTML 4.0.
target
getTarget
setTarget
The default target frame. See the
target attribute definition
in HTML 4.0.
*/
public interface HTMLBaseElement
extends HTMLElement
{
/** Assigns the value of the href
property.
*/
void setHref (String href);
/**
* Returns the value of the href
property.
*/
String getHref ();
/** Assigns the value of the target
property.
*/
void setTarget (String target);
/**
* Returns the value of the target
property.
*/
String getTarget ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy