1 22 23 package org.enhydra.wireless.voicexml.dom; 24 25 public interface VoiceXMLMetaElement extends VoiceXMLElement { 26 27 public void setHttpEquiv(String newValue); 28 public String getHttpEquiv(); 29 30 31 public void setName(String newValue); 32 public String getName(); 33 34 35 public void setContent(String newValue); 36 public String getContent(); 37 38 39 } 40 | Popular Tags |