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