1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import com.gargoylesoftware.htmlunit.Page; 41 import java.io.IOException ; 42 import java.util.Map ; 43 44 52 public class HtmlSubmitInput extends HtmlInput { 53 54 60 public HtmlSubmitInput( final HtmlPage page, final Map attributes ) { 61 super( page, attributes ); 62 } 63 64 76 protected Page doClickAction(final Page defaultPage) throws IOException { 77 return getEnclosingFormOrDie().submit(this); 78 } 79 80 } 81 82 | Popular Tags |