1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLLIElement; 19 20 27 public class HTMLLIElementImpl 28 extends HTMLElementImpl 29 implements HTMLLIElement 30 { 31 32 private static final long serialVersionUID = 3258417244009607225L; 33 34 public String getType() 35 { 36 return getAttribute( "type" ); 37 } 38 39 40 public void setType( String type ) 41 { 42 setAttribute( "type", type ); 43 } 44 45 46 public int getValue() 47 { 48 return getInteger( getAttribute( "value" ) ); 49 } 50 51 52 public void setValue( int value ) 53 { 54 setAttribute( "value", String.valueOf( value ) ); 55 } 56 57 58 63 public HTMLLIElementImpl( HTMLDocumentImpl owner, String name ) 64 { 65 super( owner, name ); 66 } 67 68 69 } 70 71 | Popular Tags |