1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 49 public class HtmlAddress extends ClickableElement { 50 51 52 public static final String TAG_NAME = "address"; 53 54 60 public HtmlAddress( final HtmlPage page, final Map attributes) { 61 super(page, attributes); 62 } 63 64 67 public String getTagName() { 68 return TAG_NAME; 69 } 70 } 71 | Popular Tags |