1 24 25 package org.enhydra.xml.xhtml.dom.xerces; 26 27 import org.enhydra.xml.dom.DOMOps; 28 import org.w3c.dom.Document ; 29 import org.w3c.dom.html.HTMLIFrameElement; 30 31 public class XHTMLIFrameElementImpl 32 extends XHTMLElementImpl 33 implements org.enhydra.xml.xhtml.dom.XHTMLIFrameElement 34 { 35 36 public XHTMLIFrameElementImpl (XHTMLDocumentBase owner, String namespaceURI, String tagName) { 37 super( owner, namespaceURI, tagName); 38 } 39 40 public void setId (String newValue) { 41 setAttribute("id", newValue); 42 } 43 44 public String getId () { 45 return getAttribute ("id"); 46 } 47 public void setLang (String newValue) { 48 setAttribute("lang", newValue); 49 } 50 51 public String getLang () { 52 return getAttribute ("lang"); 53 } 54 public void setDir (String newValue) { 55 setAttribute("dir", newValue); 56 } 57 58 public String getDir () { 59 return getAttribute ("dir"); 60 } 61 public void setClassName (String newValue) { 62 setAttribute("class", newValue); 63 } 64 65 public String getClassName () { 66 return getAttribute ("class"); 67 } 68 public void setTitle (String newValue) { 69 setAttribute("title", newValue); 70 } 71 72 public String getTitle () { 73 return getAttribute ("title"); 74 } 75 public void setName (String newValue) { 76 setAttribute("name", newValue); 77 } 78 79 public String getName () { 80 return getAttribute ("name"); 81 } 82 public void setAlign (String newValue) { 83 setAttribute("align", newValue); 84 } 85 86 public String getAlign () { 87 return getAttribute ("align"); 88 } 89 public void setHeight (String newValue) { 90 setAttribute("height", newValue); 91 } 92 93 public String getHeight () { 94 return getAttribute ("height"); 95 } 96 public void setWidth (String newValue) { 97 setAttribute("width", newValue); 98 } 99 100 public String getWidth () { 101 return getAttribute ("width"); 102 } 103 public void setFrameBorder (String newValue) { 104 setAttribute("frameborder", newValue); 105 } 106 107 public String getFrameBorder () { 108 return getAttribute ("frameborder"); 109 } 110 public void setLongDesc (String newValue) { 111 setAttribute("longdesc", newValue); 112 } 113 114 public String getLongDesc () { 115 return getAttribute ("longdesc"); 116 } 117 public void setMarginHeight (String newValue) { 118 setAttribute("marginheight", newValue); 119 } 120 121 public String getMarginHeight () { 122 return getAttribute ("marginheight"); 123 } 124 public void setMarginWidth (String newValue) { 125 setAttribute("marginwidth", newValue); 126 } 127 128 public String getMarginWidth () { 129 return getAttribute ("marginwidth"); 130 } 131 public void setScrolling (String newValue) { 132 setAttribute("scrolling", newValue); 133 } 134 135 public String getScrolling () { 136 return getAttribute ("scrolling"); 137 } 138 public void setSrc (String newValue) { 139 setAttribute("src", newValue); 140 } 141 142 public String getSrc () { 143 return getAttribute ("src"); 144 } 145 public void setStyle (String newValue) { 146 setAttribute("style", newValue); 147 } 148 149 public String getStyle () { 150 return getAttribute ("style"); 151 } 152 153 154 public Document getContentDocument() { 155 return DOMOps.getContentDocument(this); 156 } 157 158 } 159 160 161 | Popular Tags |