1 22 package org.enhydra.wireless.wml.dom.xerces; 23 24 import org.enhydra.wireless.wml.dom.WMLTableElement; 25 26 public class WMLTableElementImpl extends WMLElementImpl implements WMLTableElement { 27 28 public WMLTableElementImpl(WMLDocumentImpl owner, String namespaceURI, String qualifiedName) { 29 super(owner, namespaceURI, qualifiedName); 30 } 31 32 public void setColumns(int newValue) { 33 setAttribute("columns", newValue); 34 } 35 36 public int getColumns() { 37 return getAttribute("columns", 0); 38 } 39 40 public void setClassName(String newValue) { 41 setAttribute("class", newValue); 42 } 43 44 public String getClassName() { 45 return getAttribute("class"); 46 } 47 48 public void setXmlLang(String newValue) { 49 setAttribute("xml:lang", newValue); 50 } 51 52 public String getXmlLang() { 53 return getAttribute("xml:lang"); 54 } 55 56 public void setAlign(String newValue) { 57 setAttribute("align", newValue); 58 } 59 60 public String getAlign() { 61 return getAttribute("align"); 62 } 63 64 public void setTitle(String newValue) { 65 setAttribute("title", newValue); 66 } 67 68 public String getTitle() { 69 return getAttribute("title"); 70 } 71 72 public void setId(String newValue) { 73 setAttribute("id", newValue); 74 } 75 76 public String getId() { 77 return getAttribute("id"); 78 } 79 80 } 81
| Popular Tags
|