1 57 package org.enhydra.apache.wml.dom; 58 59 import org.enhydra.apache.wml.WMLOneventElement; 60 61 65 66 public class WMLOneventElementImpl extends WMLElementImpl implements WMLOneventElement { 67 68 public WMLOneventElementImpl (WMLDocumentImpl owner, String tagName) { 69 super( owner, tagName); 70 } 71 72 public void setClassName(String newValue) { 73 setAttribute("class", newValue); 74 } 75 76 public String getClassName() { 77 return getAttribute("class"); 78 } 79 80 public void setId(String newValue) { 81 setAttribute("id", newValue); 82 } 83 84 public String getId() { 85 return getAttribute("id"); 86 } 87 88 public void setType(String newValue) { 89 setAttribute("type", newValue); 90 } 91 92 public String getType() { 93 return getAttribute("type"); 94 } 95 96 } 97 | Popular Tags |