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