104105106107108109110111112113114
Context c = getContext(); if (c == null) { return null; } Context parent = null; for (String pathElem : new ContextPath(path).getElements()) { parent = c; c = c.getChild(pathElem); if (c == null) { if (!create) { return null;