(ELContext ctx, String name)
| 183 | } |
| 184 | |
| 185 | private BeanProperty get(ELContext ctx, String name) { |
| 186 | BeanProperty property = this.properties.get(name); |
| 187 | if (property == null) { |
| 188 | throw new PropertyNotFoundException(Util.message(ctx, "propertyNotFound", type.getName(), name)); |
| 189 | } |
| 190 | return property; |
| 191 | } |
| 192 | |
| 193 | private Class<?> getType() { |
| 194 | return type; |