149150151152153154155156157158159
return this.fullName; } @Override public Entity getParent() { Entity result = null; int index = this.fullName.lastIndexOf("/"); if (index != -1) { result = new ServletWarEntity(getServletContext(), this.fullName .substring(0, index + 1));
145146147148149150151152153154155
151152153154155156157158159160161