1 57 package org.enhydra.apache.html.dom; 58 59 60 import org.enhydra.apache.xerces.dom.ElementImpl; 61 import org.w3c.dom.html.HTMLModElement; 62 63 64 70 public class HTMLModElementImpl 71 extends HTMLElementImpl 72 implements HTMLModElement 73 { 74 75 76 77 public String getCite() 78 { 79 return getAttribute( "cite" ); 80 } 81 82 83 public void setCite( String cite ) 84 { 85 setAttribute( "cite", cite ); 86 } 87 88 89 public String getDateTime() 90 { 91 return getAttribute( "datetime" ); 92 } 93 94 95 public void setDateTime( String dateTime ) 96 { 97 setAttribute( "datetime", dateTime ); 98 } 99 100 101 106 public HTMLModElementImpl( HTMLDocumentImpl owner, String name ) 107 { 108 super( owner, name ); 109 } 110 111 112 } 113 114 | Popular Tags |