org.apache.jasper.compiler
类 ELParser

java.lang.Object
  继承者 org.apache.jasper.compiler.ELParser

public class ELParser
extends 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(String expression)
           
 
方法摘要
static ELNode.Nodes parse(String expression)
          Parse an EL expression
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

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* '}') )+
返回:
Parsed EL expression in ELNode.Nodes


Copyright © 2013. All Rights Reserved.