1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 43 51 public class HtmlParagraph extends ClickableElement { 52 53 54 public static final String TAG_NAME = "p"; 55 56 62 public HtmlParagraph( 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 getAlignAttribute() { 82 return getAttributeValue("align"); 83 } 84 } 85 | Popular Tags |