1 20 21 22 package org.ozoneDB.xml.dom.html; 23 24 25 import org.ozoneDB.xml.dom.ElementImpl; 26 import org.w3c.dom.html.HTMLIsIndexElement; 27 28 29 35 public final class HTMLIsIndexElementImpl extends HTMLElementImpl implements HTMLIsIndexElement { 36 37 38 public String getPrompt() { 39 return getAttribute( "prompt" ); 40 } 41 42 43 public void setPrompt( String prompt ) { 44 setAttribute( "prompt", prompt ); 45 } 46 47 48 53 public HTMLIsIndexElementImpl( HTMLDocumentImpl owner, String name ) { 54 super( owner, "ISINDEX" ); 55 } 56 57 58 } 59 | Popular Tags |