1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 43 51 public class HtmlNoFrames extends ClickableElement { 52 53 54 public static final String TAG_NAME = "noframes"; 55 56 62 public HtmlNoFrames( 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 |