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 WMLPostfieldElementImpl extends WMLElementImpl implements WMLPostfieldElement { 67 68 public WMLPostfieldElementImpl (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 setId(String newValue) { 89 setAttribute("id", newValue); 90 } 91 92 public String getId() { 93 return getAttribute("id"); 94 } 95 96 public void setName(String newValue) { 97 setAttribute("name", newValue); 98 } 99 100 public String getName() { 101 return getAttribute("name"); 102 } 103 104 } 105 | Popular Tags |