1 16 package org.apache.html.dom; 17 18 import org.w3c.dom.html.HTMLFrameSetElement; 19 20 27 public class HTMLFrameSetElementImpl 28 extends HTMLElementImpl 29 implements HTMLFrameSetElement 30 { 31 32 private static final long serialVersionUID = 4049914961339888440L; 33 34 public String getCols() 35 { 36 return getAttribute( "cols" ); 37 } 38 39 40 public void setCols( String cols ) 41 { 42 setAttribute( "cols", cols ); 43 } 44 45 46 public String getRows() 47 { 48 return getAttribute( "rows" ); 49 } 50 51 52 public void setRows( String rows ) 53 { 54 setAttribute( "rows", rows ); 55 } 56 57 58 63 public HTMLFrameSetElementImpl( HTMLDocumentImpl owner, String name ) 64 { 65 super( owner, name ); 66 } 67 68 69 } 70 71 | Popular Tags |