MCPcopy Create free account
hub / github.com/BaseXdb/basex / next

Method next

basex-core/src/main/java/org/basex/query/value/node/GNode.java:103–111  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

101 private boolean slf = self;
102
103 @Override
104 public GNode next() {
105 if(slf) {
106 slf = false;
107 } else {
108 node = node.parent();
109 }
110 return node;
111 }
112 };
113 }
114

Callers

nothing calls this directly

Calls 15

parentMethod · 0.95
selfIterMethod · 0.95
childIterMethod · 0.95
kindMethod · 0.95
addDescendantsMethod · 0.95
iterMethod · 0.95
isMethod · 0.95
sizeMethod · 0.95
getMethod · 0.95
nextMethod · 0.65
addMethod · 0.65
isMethod · 0.65

Tested by

no test coverage detected