1 16 package org.apache.wml.dom; 17 18 import org.apache.wml.*; 19 20 25 public class WMLMetaElementImpl extends WMLElementImpl implements WMLMetaElement { 26 27 private static final long serialVersionUID = 3256726199320589875L; 28 29 public WMLMetaElementImpl (WMLDocumentImpl owner, String tagName) { 30 super( owner, tagName); 31 } 32 33 public void setForua(boolean newValue) { 34 setAttribute("forua", newValue); 35 } 36 37 public boolean getForua() { 38 return getAttribute("forua", false); 39 } 40 41 public void setScheme(String newValue) { 42 setAttribute("scheme", newValue); 43 } 44 45 public String getScheme() { 46 return getAttribute("scheme"); 47 } 48 49 public void setClassName(String newValue) { 50 setAttribute("class", newValue); 51 } 52 53 public String getClassName() { 54 return getAttribute("class"); 55 } 56 57 public void setHttpEquiv(String newValue) { 58 setAttribute("http-equiv", newValue); 59 } 60 61 public String getHttpEquiv() { 62 return getAttribute("http-equiv"); 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 setContent(String newValue) { 74 setAttribute("content", newValue); 75 } 76 77 public String getContent() { 78 return getAttribute("content"); 79 } 80 81 public void setName(String newValue) { 82 setAttribute("name", newValue); 83 } 84 85 public String getName() { 86 return getAttribute("name"); 87 } 88 } 89 | Popular Tags |