1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 28 public class XHTMLIsIndexElementImpl 29 extends XHTMLElementImpl 30 implements org.enhydra.xml.xhtml.dom.XHTMLIsIndexElement 31 { 32 33 public XHTMLIsIndexElementImpl (XHTMLDocumentBase owner, String namespaceURI, String tagName) { 34 super( owner, namespaceURI, tagName); 35 } 36 37 public void setId (String newValue) { 38 setAttribute("id", newValue); 39 } 40 41 public String getId () { 42 return getAttribute ("id"); 43 } 44 public void setLang (String newValue) { 45 setAttribute("lang", newValue); 46 } 47 48 public String getLang () { 49 return getAttribute ("lang"); 50 } 51 public void setDir (String newValue) { 52 setAttribute("dir", newValue); 53 } 54 55 public String getDir () { 56 return getAttribute ("dir"); 57 } 58 public void setClassName (String newValue) { 59 setAttribute("class", newValue); 60 } 61 62 public String getClassName () { 63 return getAttribute ("class"); 64 } 65 public void setTitle (String newValue) { 66 setAttribute("title", newValue); 67 } 68 69 public String getTitle () { 70 return getAttribute ("title"); 71 } 72 public void setPrompt (String newValue) { 73 setAttribute("prompt", newValue); 74 } 75 76 public String getPrompt () { 77 return getAttribute ("prompt"); 78 } 79 public void setStyle (String newValue) { 80 setAttribute("style", newValue); 81 } 82 83 public String getStyle () { 84 return getAttribute ("style"); 85 } 86 public void setXmlLang (String newValue) { 87 setAttribute("xml:lang", newValue); 88 } 89 90 public String getXmlLang () { 91 return getAttribute ("xml:lang"); 92 } 93 ; 94 95 96 97 ; 98 } 99 100 101 | Popular Tags |