Example #1
0
 public String getConstantAttribute(String attribute) {
   Node.JspAttribute attr = getNodeAttribute(attribute);
   if (attr == null) return null;
   return attr.getValue();
 }
Example #2
0
 public boolean isConstantAttribute(String attribute) {
   Node.JspAttribute attr = getNodeAttribute(attribute);
   if (attr == null) return false;
   return attr.isLiteral();
 }