[ 
https://issues.apache.org/jira/browse/JEXL-105?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sebb closed JEXL-105.
---------------------

    
> Array literals are considered constant even when they are not
> -------------------------------------------------------------
>
>                 Key: JEXL-105
>                 URL: https://issues.apache.org/jira/browse/JEXL-105
>             Project: Commons JEXL
>          Issue Type: Bug
>    Affects Versions: 2.0.1
>         Environment: JDK 1.6 SE on Windows XP
>            Reporter: Cary Thompson
>            Assignee: Henri Biestro
>             Fix For: 2.1
>
>
> JexlContext context = new MapContext();
> Expression selectExp = new JexlEngine().createExpression("[a.propA]");
> context.set("a", new A("a1", "p1"));
> System.out.println(Arrays.toString((Object[])selectExp.evaluate(context)));   
>         
> -->[p1]               
> //selectExp = new JexlEngine().createExpression("[a.propA]");
> context.set("a", new A("a2", "p2"));
> System.out.println(Arrays.toString((Object[])selectExp.evaluate(context)));   
>         
> --> [p1] correct answer should be [p2]
> // A's class definition
> public class A {
>       String nameA;
>       
>       String propA;
>       public A(String nameA, String propA) {
>               this.nameA = nameA;
>               this.propA = propA;
>       }
>       @Override
>       public String toString() {
>               return "A [nameA=" + nameA + ", propA=" + propA + "]";
>       }
>       public String getNameA() {
>               return nameA;
>       }
>       public String getPropA() {
>               return propA;
>       }
> }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to