1 57 package org.enhydra.xml.lazydom.html; 58 import org.enhydra.xml.lazydom.LazyElement; 59 import org.enhydra.xml.lazydom.LazyElementNoNS; 60 import org.w3c.dom.html.HTMLModElement; 61 62 63 69 public class HTMLModElementImpl 70 extends LazyHTMLElement 71 implements HTMLModElement 72 { 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 public String getDateTime() 89 { 90 return getAttribute( "datetime" ); 91 } 92 93 94 public void setDateTime( String dateTime ) 95 { 96 setAttribute( "datetime", dateTime ); 97 } 98 99 100 105 public HTMLModElementImpl( LazyHTMLDocument owner, LazyElement template, String name ) 106 { 107 super( owner, template, name ); 108 } 109 110 111 } 112 113 | Popular Tags |