1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 49 public class HtmlTableFooter extends TableRowGroup { 50 51 52 public static final String TAG_NAME = "tfoot"; 53 54 60 public HtmlTableFooter( 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 |