1 58 package org.apache.ecs.vxml; 59 60 import org.apache.ecs.xml.XML; 61 62 67 public class VXMLElement extends XML 68 { 69 72 public VXMLElement() 73 { 74 super("", true); 75 } 76 77 81 public VXMLElement(String element_type) 82 { 83 super(element_type, true); 84 } 85 86 public boolean getNeedClosingTag() 87 { 88 return elements().hasMoreElements(); 89 } 90 91 } 92 | Popular Tags |