use of com.torodb.d2r.model.PathStack.PathInfo in project torodb by torodb.
the class DocPartDataCollection method findParent.
private DocPartDataImpl findParent(PathInfo path) {
PathInfo it = path.getParent();
while (it != null) {
DocPartDataImpl tableInfo = docPartDataMap.get(it);
if (tableInfo != null) {
return tableInfo;
}
it = it.getParent();
}
return null;
}
Aggregations