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 AstBracketSuffix extends SimpleNode { 35 public AstBracketSuffix(int id) { 36 super(id); 37 } 38 39 public Object getValue(EvaluationContext ctx) 40 throws ELException { 41 return this.children[0].getValue(ctx); 42 } 43 } 44 | Popular Tags |