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