1 12 13 package org.w3c.dom.html; 14 15 22 public interface HTMLFormElement extends HTMLElement { 23 26 public HTMLCollection getElements(); 27 28 31 public int getLength(); 32 33 36 public String getName(); 37 public void setName(String name); 38 39 43 public String getAcceptCharset(); 44 public void setAcceptCharset(String acceptCharset); 45 46 50 public String getAction(); 51 public void setAction(String action); 52 53 58 public String getEnctype(); 59 public void setEnctype(String enctype); 60 61 65 public String getMethod(); 66 public void setMethod(String method); 67 68 72 public String getTarget(); 73 public void setTarget(String target); 74 75 78 public void submit(); 79 80 84 public void reset(); 85 86 } 87 88 | Popular Tags |