1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLParamElement; 19 20 27 public class HTMLParamElementImpl 28 extends HTMLElementImpl 29 implements HTMLParamElement 30 { 31 32 private static final long serialVersionUID = 3258412815831020848L; 33 34 public String getName() 35 { 36 return getAttribute( "name" ); 37 } 38 39 40 public void setName( String name ) 41 { 42 setAttribute( "name", name ); 43 } 44 45 46 public String getType() 47 { 48 return getAttribute( "type" ); 49 } 50 51 52 public void setType( String type ) 53 { 54 setAttribute( "type", type ); 55 } 56 57 58 public String getValue() 59 { 60 return getAttribute( "value" ); 61 } 62 63 64 public void setValue( String value ) 65 { 66 setAttribute( "value", value ); 67 } 68 69 70 public String getValueType() 71 { 72 return capitalize( getAttribute( "valuetype" ) ); 73 } 74 75 76 public void setValueType( String valueType ) 77 { 78 setAttribute( "valuetype", valueType ); 79 } 80 81 82 87 public HTMLParamElementImpl( HTMLDocumentImpl owner, String name ) 88 { 89 super( owner, name ); 90 } 91 92 93 } 94 95 | Popular Tags |