1 16 package org.apache.wml.dom; 17 18 import org.apache.wml.*; 19 20 25 public class WMLGoElementImpl extends WMLElementImpl implements WMLGoElement { 26 27 private static final long serialVersionUID = 3256718485575841072L; 28 29 public WMLGoElementImpl (WMLDocumentImpl owner, String tagName) { 30 super( owner, tagName); 31 } 32 33 public void setSendreferer(String newValue) { 34 setAttribute("sendreferer", newValue); 35 } 36 37 public String getSendreferer() { 38 return getAttribute("sendreferer"); 39 } 40 41 public void setAcceptCharset(String newValue) { 42 setAttribute("accept-charset", newValue); 43 } 44 45 public String getAcceptCharset() { 46 return getAttribute("accept-charset"); 47 } 48 49 public void setHref(String newValue) { 50 setAttribute("href", newValue); 51 } 52 53 public String getHref() { 54 return getAttribute("href"); 55 } 56 57 public void setClassName(String newValue) { 58 setAttribute("class", newValue); 59 } 60 61 public String getClassName() { 62 return getAttribute("class"); 63 } 64 65 public void setId(String newValue) { 66 setAttribute("id", newValue); 67 } 68 69 public String getId() { 70 return getAttribute("id"); 71 } 72 73 public void setMethod(String newValue) { 74 setAttribute("method", newValue); 75 } 76 77 public String getMethod() { 78 return getAttribute("method"); 79 } 80 81 } 82 | Popular Tags |