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