FileDocCategorySizeDatePackage
HTMLAppletElementImpl.javaAPI DocApache Xerces 3.0.13790Fri Sep 14 20:33:54 BST 2007org.apache.html.dom

HTMLAppletElementImpl

public class HTMLAppletElementImpl extends HTMLElementImpl implements HTMLAppletElement
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.HTMLAppletElement
see
HTMLElementImpl

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

param
owner The owner HTML document

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


      
    
        return getAttribute( "align" );
    
public java.lang.StringgetAlt()

        return getAttribute( "alt" );
    
public java.lang.StringgetArchive()

        return getAttribute( "archive" );
    
public java.lang.StringgetCode()

        return getAttribute( "code" );
    
public java.lang.StringgetCodeBase()

        return getAttribute( "codebase" );
    
public java.lang.StringgetHeight()

        return getAttribute( "height" );
    
public java.lang.StringgetHspace()

        return getAttribute( "height" );
    
public java.lang.StringgetName()

        return getAttribute( "name" );
    
public java.lang.StringgetObject()

        return getAttribute( "object" );
    
public java.lang.StringgetVspace()

        return getAttribute( "vspace" );
    
public java.lang.StringgetWidth()

        return getAttribute( "width" );
    
public voidsetAlign(java.lang.String align)

        setAttribute( "align", align );
    
public voidsetAlt(java.lang.String alt)

        setAttribute( "alt", alt );
    
public voidsetArchive(java.lang.String archive)

        setAttribute( "archive", archive );
    
public voidsetCode(java.lang.String code)

        setAttribute( "code", code );
    
public voidsetCodeBase(java.lang.String codeBase)

        setAttribute( "codebase", codeBase );
    
public voidsetHeight(java.lang.String height)

        setAttribute( "height", height );
    
public voidsetHspace(java.lang.String height)

        setAttribute( "height", height );
    
public voidsetName(java.lang.String name)

        setAttribute( "name", name );
    
public voidsetObject(java.lang.String object)

        setAttribute( "object", object );
    
public voidsetVspace(java.lang.String vspace)

        setAttribute( "vspace", vspace );
    
public voidsetWidth(java.lang.String width)

        setAttribute( "width", width );