org.nlab.json.stream.jsonpath.path.PathDescendantNode Maven / Gradle / Ivy
package org.nlab.json.stream.jsonpath.path;
/**
* Created by nlabrot on 13/04/16.
*/
public class PathDescendantNode extends PathNode {
public PathDescendantNode(PathNode child) {
super(child);
}
}