1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 43 51 public class HtmlPreformattedText extends ClickableElement { 52 53 54 public static final String TAG_NAME = "pre"; 55 56 62 public HtmlPreformattedText( final HtmlPage page, final Map attributes ) { 63 super(page, attributes); 64 } 65 66 69 public String getTagName() { 70 return TAG_NAME; 71 } 72 73 81 public final String getWidthAttribute() { 82 return getAttributeValue("width"); 83 } 84 } 85 | Popular Tags |