FileDocCategorySizeDatePackage
WMLTableElementImpl.javaAPI DocApache Xerces 3.0.12460Fri Sep 14 20:33:52 BST 2007org.apache.wml.dom

WMLTableElementImpl

public class WMLTableElementImpl extends WMLElementImpl implements WMLTableElement
xerces.internal
version
$Id: WMLTableElementImpl.java 447257 2006-09-18 05:40:07Z mrglavas $
author
David Li

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public WMLTableElementImpl(WMLDocumentImpl owner, String tagName)


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

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

        return getAttribute("class");
    
public intgetColumns()

        return getAttribute("columns", 0);
    
public java.lang.StringgetId()

        return getAttribute("id");
    
public java.lang.StringgetTitle()

        return getAttribute("title");
    
public java.lang.StringgetXmlLang()

        return getAttribute("xml:lang");
    
public voidsetAlign(java.lang.String newValue)

        setAttribute("align", newValue);
    
public voidsetClassName(java.lang.String newValue)

        setAttribute("class", newValue);
    
public voidsetColumns(int newValue)

        setAttribute("columns", newValue);
    
public voidsetId(java.lang.String newValue)

        setAttribute("id", newValue);
    
public voidsetTitle(java.lang.String newValue)

        setAttribute("title", newValue);
    
public voidsetXmlLang(java.lang.String newValue)

        setAttribute("xml:lang", newValue);