1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLLinkElement extends VoiceXMLElement { 26 27 public void setFetchaudio(String newValue); 28 public String getFetchaudio(); 29 30 31 public void setFetchtimeout(String newValue); 32 public String getFetchtimeout(); 33 34 35 public void setNext(String newValue); 36 public String getNext(); 37 38 39 public void setEvent(String newValue); 40 public String getEvent(); 41 42 43 public void setExpr(String newValue); 44 public String getExpr(); 45 46 47 public void setFetchhint(String newValue); 48 public String getFetchhint(); 49 50 51 public void setCaching(String newValue); 52 public String getCaching(); 53 54 55 } 56 | Popular Tags |