(String qName, String prefix, String localName, String uri, Attributes attrs, Mark start, Node parent,
TagInfo tagInfo, Class<?> tagHandlerClass)
| 1669 | * Constructor for custom action implemented by tag handler. |
| 1670 | */ |
| 1671 | CustomTag(String qName, String prefix, String localName, String uri, Attributes attrs, Mark start, Node parent, |
| 1672 | TagInfo tagInfo, Class<?> tagHandlerClass) { |
| 1673 | this(qName, prefix, localName, uri, attrs, null, null, start, parent, tagInfo, tagHandlerClass); |
| 1674 | } |
| 1675 | |
| 1676 | /* |
| 1677 | * Constructor for custom action implemented by tag handler. |
nothing calls this directly
no test coverage detected