Returns a string representation of the name of the node. @param node node @param parent parent (can be null) @param plan plan @param qc query context @return name
(final GNode node, final GNode parent, final Plan plan,
final QueryContext qc)
| 387 | * @return name |
| 388 | */ |
| 389 | static byte[] nodeName(final GNode node, final GNode parent, final Plan plan, |
| 390 | final QueryContext qc) { |
| 391 | return nodeName(node.qname(), node.kind() == Kind.ELEMENT, parent, plan, qc); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Returns a string representation of the name of the node. |
no test coverage detected