1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Goto extends VXMLElement 67 { 68 69 73 public Goto() 74 { 75 super("goto"); 76 } 77 78 79 83 public Goto(String next) 84 { 85 this(); 86 setNext(next); 87 } 88 89 93 public Goto setNext(String next) 94 { 95 addAttribute("next", next); 96 return this; 97 } 98 99 100 104 public Goto setExpr(String expr) 105 { 106 addAttribute("expr", expr); 107 return this; 108 } 109 110 114 public Goto setNextitem(String nextitem) 115 { 116 addAttribute("nextitem", nextitem); 117 return this; 118 } 119 120 121 125 public Goto setExpritem(String expritem) 126 { 127 addAttribute("expritem", expritem); 128 return this; 129 } 130 131 135 public Goto setCaching(String caching) 136 { 137 addAttribute("caching", caching); 138 return this; 139 } 140 141 145 public Goto setFetchaudio(String fetchaudio) 146 { 147 addAttribute("fetchaudio", fetchaudio); 148 return this; 149 } 150 151 152 156 public Goto setFetchint(String fetchint) 157 { 158 addAttribute("fetchint", fetchint); 159 return this; 160 } 161 162 166 public Goto setFetchtimeout(String fetchtimeout) 167 { 168 addAttribute("fetchtimeout", fetchtimeout); 169 return this; 170 } 171 172 } 173 | Popular Tags |