1 16 package org.apache.wml.dom; 17 18 import org.apache.wml.*; 19 20 25 public class WMLIElementImpl extends WMLElementImpl implements WMLIElement { 26 27 private static final long serialVersionUID = 3832616300911735604L; 28 29 public WMLIElementImpl (WMLDocumentImpl owner, String tagName) { 30 super( owner, tagName); 31 } 32 33 public void setClassName(String newValue) { 34 setAttribute("class", newValue); 35 } 36 37 public String getClassName() { 38 return getAttribute("class"); 39 } 40 41 public void setXmlLang(String newValue) { 42 setAttribute("xml:lang", newValue); 43 } 44 45 public String getXmlLang() { 46 return getAttribute("xml:lang"); 47 } 48 49 public void setId(String newValue) { 50 setAttribute("id", newValue); 51 } 52 53 public String getId() { 54 return getAttribute("id"); 55 } 56 57 } 58 | Popular Tags |