1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLAppletElement; 19 20 27 public class HTMLAppletElementImpl 28 extends HTMLElementImpl 29 implements HTMLAppletElement 30 { 31 32 private static final long serialVersionUID = 4049641191635498032L; 33 34 public String getAlign() 35 { 36 return getAttribute( "align" ); 37 } 38 39 40 public void setAlign( String align ) 41 { 42 setAttribute( "align", align ); 43 } 44 45 46 public String getAlt() 47 { 48 return getAttribute( "alt" ); 49 } 50 51 52 public void setAlt( String alt ) 53 { 54 setAttribute( "alt", alt ); 55 } 56 57 58 public String getArchive() 59 { 60 return getAttribute( "archive" ); 61 } 62 63 64 public void setArchive( String archive ) 65 { 66 setAttribute( "archive", archive ); 67 } 68 69 70 public String getCode() 71 { 72 return getAttribute( "code" ); 73 } 74 75 76 public void setCode( String code ) 77 { 78 setAttribute( "code", code ); 79 } 80 81 82 public String getCodeBase() 83 { 84 return getAttribute( "codebase" ); 85 } 86 87 88 public void setCodeBase( String codeBase ) 89 { 90 setAttribute( "codebase", codeBase ); 91 } 92 93 94 public String getHeight() 95 { 96 return getAttribute( "height" ); 97 } 98 99 100 public void setHeight( String height ) 101 { 102 setAttribute( "height", height ); 103 } 104 105 106 public String getHspace() 107 { 108 return getAttribute( "height" ); 109 } 110 111 112 public void setHspace( String height ) 113 { 114 setAttribute( "height", height ); 115 } 116 117 118 public String getName() 119 { 120 return getAttribute( "name" ); 121 } 122 123 124 public void setName( String name ) 125 { 126 setAttribute( "name", name ); 127 } 128 129 130 public String getObject() 131 { 132 return getAttribute( "object" ); 133 } 134 135 136 public void setObject( String object ) 137 { 138 setAttribute( "object", object ); 139 } 140 141 142 public String getVspace() 143 { 144 return getAttribute( "vspace" ); 145 } 146 147 148 public void setVspace( String vspace ) 149 { 150 setAttribute( "vspace", vspace ); 151 } 152 153 154 public String getWidth() 155 { 156 return getAttribute( "width" ); 157 } 158 159 160 public void setWidth( String width ) 161 { 162 setAttribute( "width", width ); 163 } 164 165 166 171 public HTMLAppletElementImpl( HTMLDocumentImpl owner, String name ) 172 { 173 super( owner, name ); 174 } 175 176 } 177 178 | Popular Tags |