FileDocCategorySizeDatePackage
HTMLModElementImpl.javaAPI DocJava SE 5 API3761Fri Aug 26 14:55:28 BST 2005com.sun.org.apache.html.internal.dom

HTMLModElementImpl

public class HTMLModElementImpl extends HTMLElementImpl implements HTMLModElement
version
$Revision: 1.6 $ $Date: 2003/05/08 20:13:09 $
author
Assaf Arkin
see
org.w3c.dom.html.HTMLModElement
see
com.sun.org.apache.xerces.internal.dom.ElementImpl

Fields Summary
Constructors Summary
public HTMLModElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document and tag name.

param
owner The owner HTML document

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

        return getAttribute( "cite" );
    
public java.lang.StringgetDateTime()

        return getAttribute( "datetime" );
    
public voidsetCite(java.lang.String cite)

        setAttribute( "cite", cite );
    
public voidsetDateTime(java.lang.String dateTime)

        setAttribute( "datetime", dateTime );