1 57 package org.enhydra.apache.wml.dom; 58 59 import org.enhydra.apache.wml.WMLGoElement; 60 61 65 66 public class WMLGoElementImpl extends WMLElementImpl implements WMLGoElement { 67 68 public WMLGoElementImpl (WMLDocumentImpl owner, String tagName) { 69 super( owner, tagName); 70 } 71 72 public void setSendreferer(String newValue) { 73 setAttribute("sendreferer", newValue); 74 } 75 76 public String getSendreferer() { 77 return getAttribute("sendreferer"); 78 } 79 80 public void setAcceptCharset(String newValue) { 81 setAttribute("accept-charset", newValue); 82 } 83 84 public String getAcceptCharset() { 85 return getAttribute("accept-charset"); 86 } 87 88 public void setHref(String newValue) { 89 setAttribute("href", newValue); 90 } 91 92 public String getHref() { 93 return getAttribute("href"); 94 } 95 96 public void setClassName(String newValue) { 97 setAttribute("class", newValue); 98 } 99 100 public String getClassName() { 101 return getAttribute("class"); 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 setMethod(String newValue) { 113 setAttribute("method", newValue); 114 } 115 116 public String getMethod() { 117 return getAttribute("method"); 118 } 119 120 } 121 | Popular Tags |