(TagAttributeInfo tai, String qName, String uri, String localName, String value, boolean expr,
ELNode.Nodes el, boolean dyn)
| 2500 | private final NamedAttribute namedAttributeNode; |
| 2501 | |
| 2502 | JspAttribute(TagAttributeInfo tai, String qName, String uri, String localName, String value, boolean expr, |
| 2503 | ELNode.Nodes el, boolean dyn) { |
| 2504 | this.qName = qName; |
| 2505 | this.uri = uri; |
| 2506 | this.localName = localName; |
| 2507 | this.value = value; |
| 2508 | this.namedAttributeNode = null; |
| 2509 | this.expression = expr; |
| 2510 | this.el = el; |
| 2511 | this.dynamic = dyn; |
| 2512 | this.namedAttribute = false; |
| 2513 | this.tai = tai; |
| 2514 | } |
| 2515 | |
| 2516 | /** |
| 2517 | * Allow node to validate itself. |
nothing calls this directly
no test coverage detected