1 23 24 package com.sun.el.parser; 25 26 import javax.el.ELException; 27 28 import com.sun.el.lang.EvaluationContext; 29 30 34 public final class AstNull extends SimpleNode { 35 public AstNull(int id) { 36 super(id); 37 } 38 39 public Class getType(EvaluationContext ctx) 40 throws ELException { 41 return null; 42 } 43 44 public Object getValue(EvaluationContext ctx) 45 throws ELException { 46 return null; 47 } 48 } 49 | Popular Tags |