(EvaluationContext ctx)
| 33 | } |
| 34 | |
| 35 | @Override |
| 36 | public Object getValue(EvaluationContext ctx) throws ELException { |
| 37 | Object obj = this.children[0].getValue(ctx); |
| 38 | Boolean b = ELSupport.coerceToBoolean(ctx, obj, true); |
| 39 | return Boolean.valueOf(!b.booleanValue()); |
| 40 | } |
| 41 | } |
nothing calls this directly
no test coverage detected