1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Object extends VXMLElement 67 { 68 69 73 public Object() 74 { 75 super("object"); 76 } 77 78 94 public Object(String name, String expr, String cond, String classid, String codebase, 95 String codetype, String data, String t, String archive, String caching, 96 String fetchaudio, String fetchint, String fetchtimeout) 97 { 98 this(); 99 setName(name); 100 setExpr(expr); 101 setCond(cond); 102 setClassid(classid); 103 setCodebase(codebase); 104 setCodetype(codetype); 105 setData(data); 106 setType(t); 107 setArchive(archive); 108 setCaching(caching); 109 setFetchaudio(fetchaudio); 110 setFetchint(fetchint); 111 setFetchtimeout(fetchtimeout); 112 } 113 114 120 public Object(String name, String classid, String data) 121 { 122 this(); 123 setName(name); 124 setClassid(classid); 125 setData(data); 126 } 127 128 133 public Object(String name, String classid) 134 { 135 this(); 136 setName(name); 137 setClassid(classid); 138 } 139 140 144 public org.apache.ecs.vxml.Object setName(String name) 145 { 146 addAttribute("name", name); 147 return this; 148 } 149 150 154 public org.apache.ecs.vxml.Object setExpr(String expr) 155 { 156 addAttribute("expr", expr); 157 return this; 158 } 159 160 164 public org.apache.ecs.vxml.Object setCond(String cond) 165 { 166 addAttribute("cond", cond); 167 return this; 168 } 169 170 174 public org.apache.ecs.vxml.Object setClassid(String classid) 175 { 176 addAttribute("classid", classid); 177 return this; 178 } 179 180 184 public org.apache.ecs.vxml.Object setCodebase(String codebase) 185 { 186 addAttribute("codebase", codebase); 187 return this; 188 } 189 190 194 public org.apache.ecs.vxml.Object setCodetype(String codetype) 195 { 196 addAttribute("codetype", codetype); 197 return this; 198 } 199 200 204 public org.apache.ecs.vxml.Object setData(String data) 205 { 206 addAttribute("data", data); 207 return this; 208 } 209 210 214 public org.apache.ecs.vxml.Object setType(String type) 215 { 216 addAttribute("type", type); 217 return this; 218 } 219 220 224 public org.apache.ecs.vxml.Object setArchive(String archive) 225 { 226 addAttribute("archive", archive); 227 return this; 228 } 229 230 234 public org.apache.ecs.vxml.Object setCaching(String caching) 235 { 236 addAttribute("caching", caching); 237 return this; 238 } 239 240 244 public org.apache.ecs.vxml.Object setFetchaudio(String fetchaudio) 245 { 246 addAttribute("fetchaudio", fetchaudio); 247 return this; 248 } 249 250 254 public org.apache.ecs.vxml.Object setFetchint(String fetchint) 255 { 256 addAttribute("fetchint", fetchint); 257 return this; 258 } 259 260 264 public org.apache.ecs.vxml.Object setFetchtimeout(String fetchtimeout) 265 { 266 addAttribute("fetchtimeout", fetchtimeout); 267 return this; 268 } 269 270 } 271 | Popular Tags |