1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 50 public class HtmlLegend extends ClickableElement { 51 52 53 public static final String TAG_NAME = "legend"; 54 55 61 public HtmlLegend( 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 getAccessKeyAttribute() { 81 return getAttributeValue("accesskey"); 82 } 83 84 85 93 public final String getAlignAttribute() { 94 return getAttributeValue("align"); 95 } 96 } 97 | Popular Tags |