1 21 32 33 package org.w3c.dom.html2; 34 35 42 public interface HTMLFormElement extends HTMLElement { 43 46 public HTMLCollection getElements(); 47 48 51 public int getLength(); 52 53 56 public String getName(); 57 60 public void setName(String name); 61 62 66 public String getAcceptCharset(); 67 71 public void setAcceptCharset(String acceptCharset); 72 73 77 public String getAction(); 78 82 public void setAction(String action); 83 84 92 public String getEnctype(); 93 101 public void setEnctype(String enctype); 102 103 107 public String getMethod(); 108 112 public void setMethod(String method); 113 114 118 public String getTarget(); 119 123 public void setTarget(String target); 124 125 128 public void submit(); 129 130 134 public void reset(); 135 136 } 137 | Popular Tags |