(EvaluationContext ctx)
| 28 | } |
| 29 | |
| 30 | @Override |
| 31 | public Object getValue(EvaluationContext ctx) throws ELException { |
| 32 | Object obj0 = this.children[0].getValue(ctx); |
| 33 | if (obj0 == null) { |
| 34 | return Boolean.FALSE; |
| 35 | } |
| 36 | Object obj1 = this.children[1].getValue(ctx); |
| 37 | if (obj1 == null) { |
| 38 | return Boolean.FALSE; |
| 39 | } |
| 40 | return (ELSupport.compare(ctx, obj0, obj1) < 0) ? Boolean.TRUE : Boolean.FALSE; |
| 41 | } |
| 42 | } |