1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLProsElement extends VoiceXMLElement { 26 27 public void setRange(String newValue); 28 public String getRange(); 29 30 31 public void setVol(String newValue); 32 public String getVol(); 33 34 35 public void setRate(String newValue); 36 public String getRate(); 37 38 39 public void setPitch(String newValue); 40 public String getPitch(); 41 42 43 } 44 | Popular Tags |