1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 43 51 public class HtmlTextInput extends HtmlInput { 52 53 private final String initialValue_; 55 56 62 public HtmlTextInput( final HtmlPage page, final Map attributes ) { 63 super( page, attributes ); 64 65 initialValue_ = getValueAttribute(); 66 } 67 68 69 72 public void reset() { 73 setValueAttribute(initialValue_); 74 } 75 } 76 77 | Popular Tags |