org.apache.jasper.compiler
Class ELParser
java.lang.Object
org.apache.jasper.compiler.ELParser
public class ELParser
extends java.lang.Object
This class implements a parser for EL expressions.
It takes strings of the form xxx${..}yyy${..}zzz etc, and turn it into
a ELNode.Nodes.
Currently, it only handles text outside ${..} and functions in ${ ..}.
- Kin-man Chung
ELParser
public ELParser(String expression)
parse
public static ELNode.Nodes parse(String expression)
Parse an EL expression
expression
- The input expression string of the form
Char* ('${' Char* '}')* Char*
- Parsed EL expression in ELNode.Nodes
Copyright B) 2000 Apache Software Foundation. All Rights Reserved.