(Node parent)
| 843 | * For GetProperty: StdActionContent ::= Attributes EmptyBody |
| 844 | */ |
| 845 | private void parseGetProperty(Node parent) throws JasperException { |
| 846 | Attributes attrs = parseAttributes(); |
| 847 | reader.skipSpaces(); |
| 848 | |
| 849 | Node getPropertyNode = new Node.GetProperty(attrs, start, parent); |
| 850 | |
| 851 | parseOptionalBody(getPropertyNode, "jsp:getProperty", TagInfo.BODY_CONTENT_EMPTY); |
| 852 | } |
| 853 | |
| 854 | /* |
| 855 | * For SetProperty: StdActionContent ::= Attributes EmptyBody |
no test coverage detected