(Node parent)
| 855 | * For SetProperty: StdActionContent ::= Attributes EmptyBody |
| 856 | */ |
| 857 | private void parseSetProperty(Node parent) throws JasperException { |
| 858 | Attributes attrs = parseAttributes(); |
| 859 | reader.skipSpaces(); |
| 860 | |
| 861 | Node setPropertyNode = new Node.SetProperty(attrs, start, parent); |
| 862 | |
| 863 | parseOptionalBody(setPropertyNode, "jsp:setProperty", TagInfo.BODY_CONTENT_EMPTY); |
| 864 | } |
| 865 | |
| 866 | /* |
| 867 | * EmptyBody ::= '/>' | ( '>' ETag ) | ( '>' S? '<jsp:attribute' NamedAttributes ETag ) |
no test coverage detected