1 58 package org.apache.ecs.vxml; 59 60 61 66 public class Link extends VXMLElement 67 { 68 69 73 public Link() 74 { 75 super("link"); 76 } 77 78 79 83 public Link setNext(String next) 84 { 85 addAttribute("next", next); 86 return this; 87 } 88 89 90 94 public Link setExpr(String expr) 95 { 96 addAttribute("expr", expr); 97 return this; 98 } 99 100 104 public Link setEvent(String event) 105 { 106 addAttribute("event", event); 107 return this; 108 } 109 110 111 115 public Link setCaching(String caching) 116 { 117 addAttribute("caching", caching); 118 return this; 119 } 120 121 125 public Link setFetchaudio(String fetchaudio) 126 { 127 addAttribute("fetchaudio", fetchaudio); 128 return this; 129 } 130 131 132 136 public Link setFetchint(String fetchint) 137 { 138 addAttribute("fetchint", fetchint); 139 return this; 140 } 141 142 146 public Link setFetchtimeout(String fetchtimeout) 147 { 148 addAttribute("fetchtimeout", fetchtimeout); 149 return this; 150 } 151 152 153 } 154 | Popular Tags |