1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLIFrameElement; 19 20 27 public class HTMLIFrameElementImpl 28 extends HTMLElementImpl 29 implements HTMLIFrameElement 30 { 31 32 private static final long serialVersionUID = 3617297817824014903L; 33 34 public String getAlign() 35 { 36 return capitalize( getAttribute( "align" ) ); 37 } 38 39 40 public void setAlign( String align ) 41 { 42 setAttribute( "align", align ); 43 } 44 45 46 public String getFrameBorder() 47 { 48 return getAttribute( "frameborder" ); 49 } 50 51 52 public void setFrameBorder( String frameBorder ) 53 { 54 setAttribute( "frameborder", frameBorder ); 55 } 56 57 58 public String getHeight() 59 { 60 return getAttribute( "height" ); 61 } 62 63 64 public void setHeight( String height ) 65 { 66 setAttribute( "height", height ); 67 } 68 69 public String getLongDesc() 70 { 71 return getAttribute( "longdesc" ); 72 } 73 74 75 public void setLongDesc( String longDesc ) 76 { 77 setAttribute( "longdesc", longDesc ); 78 } 79 80 81 public String getMarginHeight() 82 { 83 return getAttribute( "marginheight" ); 84 } 85 86 87 public void setMarginHeight( String marginHeight ) 88 { 89 setAttribute( "marginheight", marginHeight ); 90 } 91 92 93 public String getMarginWidth() 94 { 95 return getAttribute( "marginwidth" ); 96 } 97 98 99 public void setMarginWidth( String marginWidth ) 100 { 101 setAttribute( "marginwidth", marginWidth ); 102 } 103 104 105 public String getName() 106 { 107 return getAttribute( "name" ); 108 } 109 110 111 public void setName( String name ) 112 { 113 setAttribute( "name", name ); 114 } 115 116 117 public String getScrolling() 118 { 119 return capitalize( getAttribute( "scrolling" ) ); 120 } 121 122 123 public void setScrolling( String scrolling ) 124 { 125 setAttribute( "scrolling", scrolling ); 126 } 127 128 129 public String getSrc() 130 { 131 return getAttribute( "src" ); 132 } 133 134 135 public void setSrc( String src ) 136 { 137 setAttribute( "src", src ); 138 } 139 140 141 public String getWidth() 142 { 143 return getAttribute( "width" ); 144 } 145 146 147 public void setWidth( String width ) 148 { 149 setAttribute( "width", width ); 150 } 151 152 153 158 public HTMLIFrameElementImpl( HTMLDocumentImpl owner, String name ) 159 { 160 super( owner, name ); 161 } 162 163 164 } 165 166 | Popular Tags |