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

HTMLPreElementImpl

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

Fields Summary
Constructors Summary
public HTMLPreElementImpl(HTMLDocumentImpl owner, String name)
Constructor requires owner document.

param
owner The owner HTML document

        super( owner, name );
    
Methods Summary
public intgetWidth()

        return getInteger( getAttribute( "width" ) );
    
public voidsetWidth(int width)

        setAttribute( "width", String.valueOf( width ) );