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