1 24 25 28 29 package org.enhydra.xml.xhtml.dom; 30 31 import org.w3c.dom.html.HTMLFrameSetElement; 32 33 public interface XHTMLFrameSetElement extends XHTMLElement , HTMLFrameSetElement { 34 35 public void setStyle(String newValue); 36 public String getStyle(); 37 38 39 public void setOnunload(String newValue); 40 public String getOnunload(); 41 42 43 public void setOnload(String newValue); 44 public String getOnload(); 45 46 47 } 48 | Popular Tags |