(String image)
| 164 | } |
| 165 | |
| 166 | @Override |
| 167 | public void setImage(String image) { |
| 168 | if (!Validation.isIdentifier(image)) { |
| 169 | throw new ELException(MessageFactory.get("error.identifier.notjava", image)); |
| 170 | } |
| 171 | this.image = image; |
| 172 | } |
| 173 | |
| 174 | |
| 175 | @Override |
no test coverage detected