1 58 package org.apache.ecs.jsp; 59 60 import org.apache.ecs.xml.XML; 61 62 67 public class jsp_element extends XML 68 { 69 72 public jsp_element() 73 { 74 super("", true); 75 } 76 77 81 public jsp_element(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 |