(EvaluationContext ctx)
| 30 | |
| 31 | |
| 32 | @Override |
| 33 | public Object getValue(EvaluationContext ctx) throws ELException { |
| 34 | // Coerce the two child nodes to string and then concatenate |
| 35 | String s1 = ELSupport.coerceToString(ctx, children[0].getValue(ctx)); |
| 36 | String s2 = ELSupport.coerceToString(ctx, children[1].getValue(ctx)); |
| 37 | return s1 + s2; |
| 38 | } |
| 39 | |
| 40 | |
| 41 | @Override |
nothing calls this directly
no test coverage detected