1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLFieldElement extends VoiceXMLElement { 26 27 public void setName(String newValue); 28 public String getName(); 29 30 31 public void setType(String newValue); 32 public String getType(); 33 34 35 public void setCond(String newValue); 36 public String getCond(); 37 38 39 public void setModal(boolean newValue); 40 public boolean getModal(); 41 42 43 public void setExpr(String newValue); 44 public String getExpr(); 45 46 47 public void setSlot(String newValue); 48 public String getSlot(); 49 50 51 } 52 | Popular Tags |