1 22 package org.enhydra.wireless.wml.dom.xerces; 23 24 import org.enhydra.wireless.wml.dom.WMLSelectElement; 25 26 public class WMLSelectElementImpl extends WMLElementImpl implements WMLSelectElement { 27 28 public WMLSelectElementImpl(WMLDocumentImpl owner, String namespaceURI, String qualifiedName) { 29 super(owner, namespaceURI, qualifiedName); 30 } 31 32 public void setMultiple(boolean newValue) { 33 setAttribute("multiple", newValue); 34 } 35 36 public boolean getMultiple() { 37 return getAttribute("multiple", false); 38 } 39 40 public void setValue(String newValue) { 41 setAttribute("value", newValue); 42 } 43 44 public String getValue() { 45 return getAttribute("value"); 46 } 47 48 public void setTabIndex(int newValue) { 49 setAttribute("tabindex", newValue); 50 } 51 52 public int getTabIndex() { 53 return getAttribute("tabindex", 0); 54 } 55 56 public void setClassName(String newValue) { 57 setAttribute("class", newValue); 58 } 59 60 public String getClassName() { 61 return getAttribute("class"); 62 } 63 64 public void setXmlLang(String newValue) { 65 setAttribute("xml:lang", newValue); 66 } 67 68 public String getXmlLang() { 69 return getAttribute("xml:lang"); 70 } 71 72 public void setTitle(String newValue) { 73 setAttribute("title", newValue); 74 } 75 76 public String getTitle() { 77 return getAttribute("title"); 78 } 79 80 public void setIValue(String newValue) { 81 setAttribute("ivalue", newValue); 82 } 83 84 public String getIValue() { 85 return getAttribute("ivalue"); 86 } 87 88 public void setId(String newValue) { 89 setAttribute("id", newValue); 90 } 91 92 public String getId() { 93 return getAttribute("id"); 94 } 95 96 public void setIName(String newValue) { 97 setAttribute("iname", newValue); 98 } 99 100 public String getIName() { 101 return getAttribute("iname"); 102 } 103 104 public void setName(String newValue) { 105 setAttribute("name", newValue); 106 } 107 108 public String getName() { 109 return getAttribute("name"); 110 } 111 } 112
| Popular Tags
|