1 20 21 22 package org.ozoneDB.xml.dom.html; 23 24 25 import org.ozoneDB.xml.dom.ElementImpl; 26 import org.w3c.dom.html.HTMLPreElement; 27 28 29 35 public final class HTMLPreElementImpl extends HTMLElementImpl implements HTMLPreElement { 36 37 38 public int getWidth() { 39 return toInteger( getAttribute( "width" ) ); 40 } 41 42 43 public void setWidth( int width ) { 44 setAttribute( "width", String.valueOf( width ) ); 45 } 46 47 48 53 public HTMLPreElementImpl( HTMLDocumentImpl owner, String name ) { 54 super( owner, "PRE" ); 55 } 56 57 58 } 59 | Popular Tags |