1 57 package com.sun.org.apache.wml.internal.dom; 58 59 import com.sun.org.apache.wml.internal.*; 60 61 65 66 public class WMLOptionElementImpl extends WMLElementImpl implements WMLOptionElement { 67 68 public WMLOptionElementImpl (WMLDocumentImpl owner, String tagName) { 69 super( owner, tagName); 70 } 71 72 public void setValue(String newValue) { 73 setAttribute("value", newValue); 74 } 75 76 public String getValue() { 77 return getAttribute("value"); 78 } 79 80 public void setClassName(String newValue) { 81 setAttribute("class", newValue); 82 } 83 84 public String getClassName() { 85 return getAttribute("class"); 86 } 87 88 public void setXmlLang(String newValue) { 89 setAttribute("xml:lang", newValue); 90 } 91 92 public String getXmlLang() { 93 return getAttribute("xml:lang"); 94 } 95 96 public void setTitle(String newValue) { 97 setAttribute("title", newValue); 98 } 99 100 public String getTitle() { 101 return getAttribute("title"); 102 } 103 104 public void setId(String newValue) { 105 setAttribute("id", newValue); 106 } 107 108 public String getId() { 109 return getAttribute("id"); 110 } 111 112 public void setOnPick(String newValue) { 113 setAttribute("onpick", newValue); 114 } 115 116 public String getOnPick() { 117 return getAttribute("onpick"); 118 } 119 120 } 121 | Popular Tags |