1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLMenuElement extends VoiceXMLElement { 26 27 public void setDtmf(boolean newValue); 28 public boolean getDtmf(); 29 30 31 public void setScope(String newValue); 32 public String getScope(); 33 34 35 public void setId(String newValue); 36 public String getId(); 37 38 39 } 40 | Popular Tags |