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