1 57 package org.enhydra.apache.wml.dom; 58 59 import org.enhydra.apache.wml.WMLCardElement; 60 61 65 66 public class WMLCardElementImpl extends WMLElementImpl implements WMLCardElement { 67 68 public WMLCardElementImpl (WMLDocumentImpl owner, String tagName) { 69 super( owner, tagName); 70 } 71 72 public void setOnTimer(String newValue) { 73 setAttribute("ontimer", newValue); 74 } 75 76 public String getOnTimer() { 77 return getAttribute("ontimer"); 78 } 79 80 public void setOrdered(boolean newValue) { 81 setAttribute("ordered", newValue); 82 } 83 84 public boolean getOrdered() { 85 return getAttribute("ordered", true); 86 } 87 88 public void setOnEnterBackward(String newValue) { 89 setAttribute("onenterbackward", newValue); 90 } 91 92 public String getOnEnterBackward() { 93 return getAttribute("onenterbackward"); 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 setXmlLang(String newValue) { 105 setAttribute("xml:lang", newValue); 106 } 107 108 public String getXmlLang() { 109 return getAttribute("xml:lang"); 110 } 111 112 public void setTitle(String newValue) { 113 setAttribute("title", newValue); 114 } 115 116 public String getTitle() { 117 return getAttribute("title"); 118 } 119 120 public void setNewContext(boolean newValue) { 121 setAttribute("newcontext", newValue); 122 } 123 124 public boolean getNewContext() { 125 return getAttribute("newcontext", false); 126 } 127 128 public void setId(String newValue) { 129 setAttribute("id", newValue); 130 } 131 132 public String getId() { 133 return getAttribute("id"); 134 } 135 136 public void setOnEnterForward(String newValue) { 137 setAttribute("onenterforward", newValue); 138 } 139 140 public String getOnEnterForward() { 141 return getAttribute("onenterforward"); 142 } 143 144 } 145 | Popular Tags |