1 57 package org.enhydra.apache.html.dom; 58 59 60 import org.enhydra.apache.xerces.dom.ElementImpl; 61 import org.w3c.dom.html.HTMLIsIndexElement; 62 63 64 70 public class HTMLIsIndexElementImpl 71 extends HTMLElementImpl 72 implements HTMLIsIndexElement 73 { 74 75 76 public String getPrompt() 77 { 78 return getAttribute( "prompt" ); 79 } 80 81 82 public void setPrompt( String prompt ) 83 { 84 setAttribute( "prompt", prompt ); 85 } 86 87 88 93 public HTMLIsIndexElementImpl( HTMLDocumentImpl owner, String name ) 94 { 95 super( owner, name ); 96 } 97 98 99 } 100 101 | Popular Tags |