1 2 3 package org.apache.el.parser; 4 5 import javax.el.ELException; 6 7 import org.apache.el.lang.EvaluationContext; 8 9 10 14 public final class AstNull extends SimpleNode { 15 public AstNull(int id) { 16 super(id); 17 } 18 19 public Class getType(EvaluationContext ctx) 20 throws ELException { 21 return null; 22 } 23 24 public Object getValue(EvaluationContext ctx) 25 throws ELException { 26 return null; 27 } 28 } 29 | Popular Tags |