FileDocCategorySizeDatePackage
HTMLBaseElementImpl.javaAPI DocApache Xerces 3.0.11982Fri Sep 14 20:33:52 BST 2007org.apache.html.dom

HTMLBaseElementImpl

public class HTMLBaseElementImpl extends HTMLElementImpl implements HTMLBaseElement
xerces.internal
version
$Revision: 447255 $ $Date: 2006-09-18 01:36:42 -0400 (Mon, 18 Sep 2006) $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLBaseElement
see
org.apache.xerces.dom.ElementImpl

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public HTMLBaseElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public java.lang.StringgetHref()


      
    
        return getAttribute( "href" );
    
public java.lang.StringgetTarget()

        return getAttribute( "target" );
    
public voidsetHref(java.lang.String href)

        setAttribute( "href", href );
    
public voidsetTarget(java.lang.String target)

        setAttribute( "target", target );