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