1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 50 public class HtmlInsertedText extends ClickableElement { 51 52 53 public static final String TAG_NAME = "ins"; 54 55 61 public HtmlInsertedText( final HtmlPage page, final Map attributes ) { 62 super( page, attributes ); 63 } 64 65 68 public String getTagName() { 69 return TAG_NAME; 70 } 71 72 80 public final String getCiteAttribute() { 81 return getAttributeValue("cite"); 82 } 83 84 85 93 public final String getDateTimeAttribute() { 94 return getAttributeValue("datetime"); 95 } 96 } 97 | Popular Tags |