Java Unified Expression Language (JUEL)
=======================================

- JUEL is an implementation of the unified expression language (EL) as specified
  by the JSP 2.1 standard (JSR-245).

- Please refer to the EL specification for more information on the unified EL.
  It is available at http://jcp.org/aboutJava/communityprocess/final/jsr245.

- The javax.el.* api sources have been taken from the Glassfish CVS repository. The code
  is licensed under Sun's CDDL (see https://glassfish.dev.java.net/public/CDDLv1.0.html)
  and is redistributed with JUEL.

- Future JUEL releases for the EL 2.1 standard will be labelled 2.1.0, 2.1.1, ...

- The JUEL distribution contains two jars: juel-2.1.x.jar includes the el api and
  implementation classes; juel-2.1.x-impl.jar includes only the implementation classes.

- The main JUEL jar may be run from the command line to dump the parse tree of an EL expression:
  $ java -jar juel-2.1.x.jar "#{unified(expression[language])}"
  +- #{...}
     |
     +- unified(...)
        |
        +- [...]
           |
           +- expression
           |
           +- language

- Enjoy!
