1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 50 public class HtmlHeader6 extends ClickableElement { 51 52 53 public static final String TAG_NAME = "h6"; 54 55 61 public HtmlHeader6( final HtmlPage page, final Map attributes) { 62 super(page, attributes); 63 } 64 65 68 public String getTagName() { 69 return TAG_NAME; 70 } 71 72 80 public final String getAlignAttribute() { 81 return getAttributeValue("align"); 82 } 83 } 84 | Popular Tags |