1 58 package org.apache.ecs.jsp; 59 60 65 public class jsp_scriptlet extends jsp_element 66 { 67 68 72 public jsp_scriptlet() 73 { 74 super(" "); 75 setBeginStartModifier('%'); 76 setBeginEndModifier('%'); 77 } 78 79 83 public jsp_scriptlet(String scriptlet) 84 { 85 this(); 86 addAttribute(scriptlet, NO_ATTRIBUTE_VALUE); 87 } 88 89 public boolean getNeedClosingTag() 90 { 91 return false; 92 } 93 94 public char getBeginEndModifier() { 95 return '%'; 96 } 97 98 } 99 | Popular Tags |