1 12 13 package org.w3c.dom.html; 14 15 import org.w3c.dom.DOMException ; 16 17 23 public interface HTMLSelectElement extends HTMLElement { 24 29 public String getType(); 30 31 36 public int getSelectedIndex(); 37 public void setSelectedIndex(int selectedIndex); 38 39 42 public String getValue(); 43 public void setValue(String value); 44 45 48 public int getLength(); 49 50 54 public HTMLFormElement getForm(); 55 56 60 public HTMLCollection getOptions(); 61 62 66 public boolean getDisabled(); 67 public void setDisabled(boolean disabled); 68 69 74 public boolean getMultiple(); 75 public void setMultiple(boolean multiple); 76 77 81 public String getName(); 82 public void setName(String name); 83 84 87 public int getSize(); 88 public void setSize(int size); 89 90 94 public int getTabIndex(); 95 public void setTabIndex(int tabIndex); 96 97 111 public void add(HTMLElement element, 112 HTMLElement before) 113 throws DOMException ; 114 115 121 public void remove(int index); 122 123 126 public void blur(); 127 128 131 public void focus(); 132 133 } 134 135 | Popular Tags |