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.HTMLQuoteElement; 27 28 29 35 public final class HTMLQuoteElementImpl extends HTMLElementImpl implements HTMLQuoteElement { 36 37 38 public String getCite() { 39 return getAttribute( "cite" ); 40 } 41 42 43 public void setCite( String cite ) { 44 setAttribute( "cite", cite ); 45 } 46 47 48 53 public HTMLQuoteElementImpl( HTMLDocumentImpl owner, String name ) { 54 super( owner, "Q" ); 55 } 56 57 58 } 59 | Popular Tags |