1 57 package org.enhydra.apache.wml.dom; 58 59 import org.enhydra.apache.wml.WMLMetaElement; 60 61 65 public class WMLMetaElementImpl extends WMLElementImpl implements WMLMetaElement { 66 67 public WMLMetaElementImpl (WMLDocumentImpl owner, String tagName) { 68 super( owner, tagName); 69 } 70 71 public void setForua(boolean newValue) { 72 setAttribute("forua", newValue); 73 } 74 75 public boolean getForua() { 76 return getAttribute("forua", false); 77 } 78 79 public void setScheme(String newValue) { 80 setAttribute("scheme", newValue); 81 } 82 83 public String getScheme() { 84 return getAttribute("scheme"); 85 } 86 87 public void setClassName(String newValue) { 88 setAttribute("class", newValue); 89 } 90 91 public String getClassName() { 92 return getAttribute("class"); 93 } 94 95 public void setHttpEquiv(String newValue) { 96 setAttribute("http-equiv", newValue); 97 } 98 99 public String getHttpEquiv() { 100 return getAttribute("http-equiv"); 101 } 102 103 public void setId(String newValue) { 104 setAttribute("id", newValue); 105 } 106 107 public String getId() { 108 return getAttribute("id"); 109 } 110 111 public void setContent(String newValue) { 112 setAttribute("content", newValue); 113 } 114 115 public String getContent() { 116 return getAttribute("content"); 117 } 118 119 public void setName(String newValue) { 120 setAttribute("name", newValue); 121 } 122 123 public String getName() { 124 return getAttribute("name"); 125 } 126 } 127 | Popular Tags |