1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLParamElement extends VoiceXMLElement { 26 27 public void setValuetype(String newValue); 28 public String getValuetype(); 29 30 31 public void setName(String newValue); 32 public String getName(); 33 34 35 public void setType(String newValue); 36 public String getType(); 37 38 39 public void setValue(String newValue); 40 public String getValue(); 41 42 43 public void setExpr(String newValue); 44 public String getExpr(); 45 46 47 } 48 | Popular Tags |